aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-07-27 18:45:40 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-07-27 18:45:40 +0200
commit688f2304056029f47073a549d7e41043eab5a0fd (patch)
treedd3434d97f4a6c9c18882fd066cca23dfe6d7be6
parent6265190fc611e468cebadb4eaf41ceb2f7e2095b (diff)
Bump version: 0.9.0.20-6265-dirty → 0.10.00.10.0
-rw-r--r--configure.ac8
-rw-r--r--debian/changelog34
-rw-r--r--debian/control4
-rw-r--r--src/Makefile.am2
4 files changed, 41 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index ff9a1c4..c0cc488 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,10 +29,10 @@ if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
fi
PKG_PROG_PKG_CONFIG([0.20])
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.11.0)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.11.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.11.0)
-PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.2.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.12.0)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.12.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.12.0)
+PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.3.0)
old_LIBS=$LIBS
AC_SEARCH_LIBS([sctp_send], [sctp], [
diff --git a/debian/changelog b/debian/changelog
index 9d582a3..135d08e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,37 @@
+libosmo-sccp (0.10.0) unstable; urgency=medium
+
+ [ Harald Welte ]
+ * debian/control: match build dependency versions with configure.ac
+ * osmo_ss7: Register 5000 as default port for IPA/SCCPlite
+ * Introduce osmo_ss7_register_rx_unknown_cb() for unknown PPID/StreamID
+
+ [ Stefan Sperling ]
+ * free msgb for primitive allocated in lm_timer_cb() of lm_fsm
+ * fix infinite recursion with routing by global title
+ * fix use after free in osmo_sccp_simple_server_add_clnt()
+ * make it possible to pass parameters to m3ua_example
+ * rename m3ua_example to sccp_demo_user
+ * sccp_demo_user: use point code 23 for server and 1 for client
+ * remove unused -p option from getopt() call in sccp_demo_user
+
+ [ Pau Espin Pedrol ]
+ * tests: xua_test: Fix use of wrong buffer for dest addr
+ * tests: xua_test: Fix array len computation
+ * build: Install example cfg files
+ * debian: Package installed example doc files
+
+ [ Neels Hofmeyr ]
+ * fix memleak in ipa_rx_msg_sccp
+ * cosmetic: sccp2sua.c: log the IEI for parsed SCCP addr
+ * add osmo_xua_msg_tall_ctx_init()
+ * fix two memleaks in ipa_rx_msg_sccp()
+ * comment: explain xua_msg free in m3ua_rx_xfer()
+
+ [ Daniel Willmann ]
+ * git-version-gen: Don't check for .git directory
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Fri, 27 Jul 2018 18:45:39 +0200
+
libosmo-sccp (0.9.0) unstable; urgency=medium
[ Neels Hofmeyr ]
diff --git a/debian/control b/debian/control
index b1949cd..8680bba 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Priority: optional
Build-Depends: debhelper (>= 9),
autotools-dev,
pkg-config,
- libosmocore-dev (>= 0.11.0),
+ libosmocore-dev (>= 0.12.0),
autoconf,
automake,
libtool,
@@ -13,7 +13,7 @@ Build-Depends: debhelper (>= 9),
git,
doxygen,
libdpkg-perl,
- libosmo-netif-dev (>= 0.2.0),
+ libosmo-netif-dev (>= 0.3.0),
libsctp-dev
Standards-Version: 3.9.7
Vcs-Git: git://git.osmocom.org/libosmo-sccp.git
diff --git a/src/Makefile.am b/src/Makefile.am
index 3af23d1..9cea642 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -25,7 +25,7 @@ lib_LTLIBRARIES = libosmo-sigtran.la
# This is _NOT_ the library release version, it's an API version.
# Please read Chapter 6 "Library interface versions" of the libtool
# documentation before making any modification
-LIBVERSION=1:0:1
+LIBVERSION=2:0:2
libosmo_sigtran_la_SOURCES = sccp_sap.c sua.c m3ua.c xua_msg.c sccp_helpers.c \
sccp2sua.c sccp_scrc.c sccp_sclc.c sccp_scoc.c \