nas: fix ECIO TLV field type (api break)

ECIO TLV (0x14) in the NAS Event Report Indication message is given as an
unsigned byte, representing negative 0.5dB increments.

This is an API break; added to NEWS already not to forget about it.

Also, version bump to 0.13.1 to flag the exact version in which the change
was introduced.

https://bugs.freedesktop.org/show_bug.cgi?id=85052
This commit is contained in:
Aleksander Morgado 2015-01-25 19:17:26 +01:00
parent 89c7b0fc54
commit 9b5957ae4a
3 changed files with 9 additions and 2 deletions

7
NEWS
View File

@ -1,4 +1,11 @@
Overview of changes in libqmi 1.14.0
----------------------------------------
This version comes with one small API break:
* ECIO value type in "NAS Event Report Indication" is given as unsigned.
Overview of changes in libqmi 1.12.0
----------------------------------------

View File

@ -4,7 +4,7 @@ AC_PREREQ([2.68])
dnl The QMI version number
m4_define([qmi_major_version], [1])
m4_define([qmi_minor_version], [13])
m4_define([qmi_micro_version], [0])
m4_define([qmi_micro_version], [1])
m4_define([qmi_version],
[qmi_major_version.qmi_minor_version.qmi_micro_version])

View File

@ -213,7 +213,7 @@
"type" : "TLV",
"format" : "sequence",
"contents" : [ { "name" : "ECIO",
"format" : "gint8" },
"format" : "guint8" },
{ "name" : "Radio Interface",
"format" : "gint8",
"public-format" : "QmiNasRadioInterface" } ] },