From 9b5957ae4a26a8273b72074c03d9eea188cceacc Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Sun, 25 Jan 2015 19:17:26 +0100 Subject: [PATCH] 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 --- NEWS | 7 +++++++ configure.ac | 2 +- data/qmi-service-nas.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 3a39806..ee64910 100644 --- a/NEWS +++ b/NEWS @@ -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 ---------------------------------------- diff --git a/configure.ac b/configure.ac index 65ac545..9e772c6 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/data/qmi-service-nas.json b/data/qmi-service-nas.json index f5a3930..abbc365 100644 --- a/data/qmi-service-nas.json +++ b/data/qmi-service-nas.json @@ -213,7 +213,7 @@ "type" : "TLV", "format" : "sequence", "contents" : [ { "name" : "ECIO", - "format" : "gint8" }, + "format" : "guint8" }, { "name" : "Radio Interface", "format" : "gint8", "public-format" : "QmiNasRadioInterface" } ] },