aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-07-27 19:05:23 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-07-27 19:05:23 +0200
commit304b3eb32876cf69b202ee5688e00905fdb336f9 (patch)
treecf8bb966ba65e2136aad0f785bd52bc3f94ce165
parent9cd523360939656fbebac6ca65882ec8694eaffc (diff)
Bump version: 1.3.0.34-9cd52-dirty → 1.4.01.4.0
-rw-r--r--configure.ac8
-rw-r--r--debian/changelog48
-rw-r--r--src/libosmo-legacy-mgcp/Makefile.am2
-rw-r--r--src/libosmo-mgcp-client/Makefile.am2
4 files changed, 54 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 0ded28819..29390c602 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,10 +39,10 @@ AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""])
AC_SUBST(LIBRARY_DL)
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.11.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.11.0)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.11.0)
-PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.2.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.12.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.12.0)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.12.0)
+PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.3.0)
AC_ARG_ENABLE(sanitize,
[AS_HELP_STRING(
diff --git a/debian/changelog b/debian/changelog
index a8a850ae7..e731351b2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,51 @@
+osmo-mgw (1.4.0) unstable; urgency=medium
+
+ [ Philipp Maier ]
+ * network: independently initalize state->out_stream
+ * stats: use libosmocore rate counter for in/out_stream.err_ts_counter
+ * mgcp_sdp: correct apidoc of mgcp_parse_sdp_data
+ * vty: clean up rtp port-range command
+ * sdp: remove unused alt_codec field from struct mgcp_rtp_end
+ * sdp: remove circular inclusion
+ * protocol: Try whole port range on port allocation
+ * client: do not start connections in loopback mode
+ * mgcp_network: do not log destination invalid ip/port as error
+ * cosmetic: fix log output
+ * conn: call talloc_free before setting the pointer to NULL
+ * protocol: do not change LCO, when no LCO are present
+ * protocol: reject illegal lco options
+ * cosmetic: fix typo
+ * mgw: clean up codec negotiation (sdp)
+ * client: add features to generate and parse codec information
+ * mgcp_internal: remove unused struct member
+ * stats: replace packet statistic counters with libosmocore rate counters
+ * stat+vty: fix printing of rate counter values
+ * protocol: prevent unnecessary null pointer deref
+
+ [ Pau Espin Pedrol ]
+ * legacy-mgcp: Add jitter buffer on the uplink receiver
+ * legacy-mgcp: switch to new osmux output APIs
+ * mgcp: mgcp_osmux: use conn_bts when forwarding pkts from bsc_nat
+ * mgcp: switch to new osmux output APIs
+ * debian: Package installed example doc files
+ * gitignore: Add m4 scripts from m4 subdir
+
+ [ Neels Hofmeyr ]
+ * api doc: fix parameter name for mgcp_conn_create()
+ * mgcp-client: add mgcp_conn_get_ci()
+ * mgcp_client_fsm: improve error logging
+ * cosmetic: fix doxygen comment markers
+ * cosmetic: mgcp_network.c: merge one LOGPC to its preceding LOGP
+ * IuUP hack: make RTP patching less general
+
+ [ Harald Welte ]
+ * cosmetic: fix typo in log message: 'abrupt' instead of 'aprupt'
+
+ [ Daniel Willmann ]
+ * git-version-gen: Don't check for .git directory
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Fri, 27 Jul 2018 19:05:22 +0200
+
osmo-mgw (1.3.0) unstable; urgency=medium
[ Pau Espin Pedrol ]
diff --git a/src/libosmo-legacy-mgcp/Makefile.am b/src/libosmo-legacy-mgcp/Makefile.am
index 4ee4e6a0b..2d6b6dd93 100644
--- a/src/libosmo-legacy-mgcp/Makefile.am
+++ b/src/libosmo-legacy-mgcp/Makefile.am
@@ -24,7 +24,7 @@ AM_LDFLAGS = \
# This is not at all related to the release version, but a range of supported
# API versions. Read TODO_RELEASE in the source tree's root!
-LEGACY_MGCP_LIBVERSION=0:1:0
+LEGACY_MGCP_LIBVERSION=1:0:1
lib_LTLIBRARIES = \
libosmo-legacy-mgcp.la \
diff --git a/src/libosmo-mgcp-client/Makefile.am b/src/libosmo-mgcp-client/Makefile.am
index 01371d79d..d3f8fff98 100644
--- a/src/libosmo-mgcp-client/Makefile.am
+++ b/src/libosmo-mgcp-client/Makefile.am
@@ -20,7 +20,7 @@ AM_LDFLAGS = \
# This is not at all related to the release version, but a range of supported
# API versions. Read TODO_RELEASE in the source tree's root!
-MGCP_CLIENT_LIBVERSION=3:0:0
+MGCP_CLIENT_LIBVERSION=4:0:1
lib_LTLIBRARIES = \
libosmo-mgcp-client.la \