summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2014-08-22 16:56:05 +0200
committerAleksander Morgado <aleksander@aleksander.es>2014-08-22 17:54:28 +0200
commita2a71317015e6bcf600bbf131c629e62c5859b1c (patch)
treed875cf97199b14f1bdf01f4ff2fc145fbd185da5
parent8fcfae43e0316dab0086a7ae535b4f383b31fed8 (diff)
release: bump version to 1.4.01.4.0
-rw-r--r--NEWS43
-rw-r--r--configure.ac6
2 files changed, 46 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index bc3a778f..e066dcb5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,47 @@
+ModemManager 1.4.0
+-------------------------------------------
+This is a new stable release of ModemManager.
+
+ * This version requires libmbim >= 1.10.0.
+
+This version comes with the following updates in the interfaces:
+
+ * Updated the logic around the IP configuration properties in the Bearer:
+ ** Setting DHCP as IP method in the IPv6 settings means that SLAAC should
+ be used to retrieve correct addressing and routing details.
+ ** DHCP IP method may now be combined with an explicit static IP address, as
+ IPv6 SLAAC may require the link-local address to be present.
+ ** MTU is now also included in the IP configuration properties, if specified
+ by the modem, and applicable to both DHCP and STATIC methods.
+ * New 'OFF' power state, which fully switches off the modem device. After
+ setting the modem in this state, no further use of it can be done. Currently
+ available in Wavecom and Cinterion.
+ * Location interface: new 'unmanaged GPS' support, which allows to start/stop
+ the GPS module in the modem, while leaving the location information retrieval
+ to other processes. Currently available in modems with independent GPS TTYs,
+ like Option/HSO, Cinterion and Huawei.
+ * New Test DBus interface: not to be installed, just for internal system tests.
+
+Other notable changes include:
+ * MBIM: support for ZTE and Sequans Communications modems.
+ * Ericsson MBM: Support for AT-capable /dev/cdc-wdm ports.
+ * Huawei: improved support for Network time retrieval.
+ * Huawei: implemented GPS support.
+ * Huawei: support for /dev/cdc-wdm AT ports via the new huawei-cdc-ncm driver.
+ * Cinterion: implemented GPS support.
+ * Cinterion: implemented unlock retries loading.
+ * Cinterion: gather port types for multi-tty devices.
+ * Cinterion: custom wait for SIM readiness after SIM-PIN unlock.
+ * Wavecom: custom wait for SIM readiness after SIM-PIN unlock.
+ * Probing: new flag to identify hotplugged devices which don't need full reset.
+ * Tests: internal refactor of the ports handling code, allowing test-driven
+ virtual ports and system tests run during 'make check'. This new feature also
+ comes with a new internal 'Test' DBus interface, as well as new --test-[*]
+ options in the ModemManager program.
+ * and many more fixes...
+
+
ModemManager 1.2.0
-------------------------------------------
This is a new stable release of ModemManager.
diff --git a/configure.ac b/configure.ac
index 8ee6ef51..89355409 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ([2.63])
dnl The MM version number
m4_define([mm_major_version], [1])
-m4_define([mm_minor_version], [3])
+m4_define([mm_minor_version], [4])
m4_define([mm_micro_version], [0])
m4_define([mm_version],
[mm_major_version.mm_minor_version.mm_micro_version])
@@ -15,9 +15,9 @@ dnl If the interface has grown (that is, the new library is compatible
dnl with old code), increment a.
dnl If the interface has changed in an incompatible way (that is,
dnl functions have changed or been removed), then zero a.
-m4_define([mm_glib_lt_current], [1])
+m4_define([mm_glib_lt_current], [2])
m4_define([mm_glib_lt_revision], [0])
-m4_define([mm_glib_lt_age], [1])
+m4_define([mm_glib_lt_age], [2])
AC_INIT([ModemManager],[mm_version],[modemmanager-devel@lists.freedesktop.org],[ModemManager])