aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-01-03 13:35:10 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2020-01-03 13:35:10 +0100
commitec45068972b85c6ace5483c5f533dae8e7975d41 (patch)
treefeba8378ffa011c822704a12b11dbeaa4ddeca7d
parent832bcdf631188f77f8c640a513872f598e585724 (diff)
Bump version: 1.6.0.30-832bc-dirty → 1.7.01.7.0
libosmocore required version increased due to include used from libosmo-netif including an include from libosmocore which in previous versions misses including an include from a symbol used. Change-Id: I1d5f14b1ad36b2ed94343fca71fdc622424403d3
-rw-r--r--configure.ac6
-rw-r--r--debian/changelog42
-rw-r--r--src/libosmo-mgcp-client/Makefile.am2
3 files changed, 46 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 124f1e6a3..c74526be6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,9 +39,9 @@ AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""])
AC_SUBST(LIBRARY_DL)
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.0.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.0.0)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.0.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.1.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.1.0)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.1.0)
PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.6.0)
AC_ARG_ENABLE(sanitize,
diff --git a/debian/changelog b/debian/changelog
index 2259eacba..fe317335d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,45 @@
+osmo-mgw (1.7.0) unstable; urgency=medium
+
+ [ Neels Hofmeyr ]
+ * rename codecs_cmp() to codecs_same()
+ * mgcp_codec: constify 'param' arg
+ * fix crashes: don't assert on incoming RTP packet size
+ * mgcp_send(): stop looping on conversion error
+ * mgcp_codec: split codec_free() off of codec_init()
+ * fix memleak: actually free strings in mgcp_codec_reset_all()
+ * mgcp_test: extend / rewrite test_mgcp_codec_pt_translate()
+ * test_mgcp_codec_pt_translate(): more tests
+ * differentiate AMR octet-aligned=0 vs =1
+ * ptmap: implicitly match '/8000' and '/8000/1'
+ * mgcp_codec: codec_set(): log about all possible errors
+ * mgcp_codec_add: fix audio_name size check
+ * explicitly free codecs in mgcp_rtp_conn_cleanup()
+ * tweak mgcp_parse_audio_ptime_rtpmap()
+ * SDP: store all ptmap entries
+ * mgcp_client_fsm cleanup: Do not assert on DLCX failure
+ * clear pending requests on MGCP failure
+ * client: endp fsm: add notify struct, prep for cancel-notify
+ * client: endp fsm: clear ci[] before dispatching DLCX success
+ * client: endp fsm: allow cancelling a notify event
+ * client: endp fsm: add osmo_mgcpc_ep_ci_ep()
+ * accept MGCP without SDP
+ * fix use-after-free: require new fsm deferred dealloc, check for term
+
+ [ Pau Espin Pedrol ]
+ * mgcp_test: Correctly release all endpoints allocated
+ * mgw: Allocate mgcp_conn instance under tcfg->endpoints
+
+ [ Harald Welte ]
+ * manual: Fix copy+paste error
+ * mgcp_client: Check for osmo_fsm_register() error return value
+ * Move fsm_mgcp_client regstration to __attribute__((contructor))
+ * exit(2) on unsupported positional arguments on command line
+
+ [ Oliver Smith ]
+ * osmoappdesc.py: switch to python 3
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Fri, 03 Jan 2020 13:35:09 +0100
+
osmo-mgw (1.6.0) unstable; urgency=medium
[ Oliver Smith ]
diff --git a/src/libosmo-mgcp-client/Makefile.am b/src/libosmo-mgcp-client/Makefile.am
index 8f5513a16..61b7822d8 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=6:0:0
+MGCP_CLIENT_LIBVERSION=7:0:1
lib_LTLIBRARIES = \
libosmo-mgcp-client.la \