aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac6
-rw-r--r--debian/changelog54
-rw-r--r--src/Makefile.am2
3 files changed, 58 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 8fb338a..a04390c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -82,10 +82,10 @@ AC_SUBST(SYMBOL_VISIBILITY)
dnl Generate the output
AM_CONFIG_HEADER(config.h)
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.10.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.10.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.11.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.11.0)
dnl FIXME: We depend on libosmoabis by now until we can move LAPD code here
-PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.0.7)
+PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.5.0)
old_LIBS=$LIBS
AC_SEARCH_LIBS([sctp_send], [sctp], [
diff --git a/debian/changelog b/debian/changelog
index 8958b90..aa8e1fe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,57 @@
+libosmo-netif (0.2.0) unstable; urgency=medium
+
+ [ Neels Hofmeyr ]
+ * jenkins: use osmo-clean-workspace.sh before and after build
+ * add --enable-sanitize config option
+ * gitignore: vim swp files
+ * osmo_stream_{cli,srv}_destroy: fix mem leak: empty msgb queue
+ * configure: add --enable-werror
+ * jenkins.sh: use --enable-werror configure flag, not CFLAGS
+
+ [ Harald Welte ]
+ * debian/control: Fix upstream-name
+ * debian/copyright: There are no AGPL licensed files left
+ * src/rs232.c: Fix accidential reference to GPLv3+ instead of GPLv2+
+ * Add SPDX-License-Identifier + Copyright statements
+ * debian/control: Fix Vcs-Browser
+ * osmux: Fix use of uninitialized memory in osmux_out_handle
+
+ [ Pau Espin Pedrol ]
+ * stream: Avoid re-creating and leaking socket when unneeded
+ * contrib: jenkins.sh: Disable building doxygen for deps
+ * test: osmo-pcap-test: Fix clock drift while replaying pcap file
+ * osmux: Use correct log category DLMUX
+ * stream.c: osmo_stream_cli_open2: Remove wrong assumption in reconnect decision
+ * tests: osmo-pcap-test: Fix pcap includes not found in old versions
+ * osmux: osmux_xfrm_output_pull: Improve checks and log of malformed packets
+ * jibuf: Add initial implementation of Jitter Buffer
+ * tests: jibuf_tool: Initial commit
+ * tests: jibuf_tool: Improve jibuf_test to read pcaps
+ * tests: jibuf_tool: Add OSMUX support
+ * tests: jibuf_tool: Add parameters to control size of buffer
+ * jibuf: Take RTP marker into account
+ * jibuf: re-sync clock out of sync timestamps
+ * tests: jibuf_tool: Add seq.plt
+ * jibuf: Estimate src clock skew
+ * tests: use osmo_init_logging2
+ * Build jibuf_tool based on libpcap availability
+ * examples: use osmo_init_logging2
+ * osmux: Add new API osmux_xfrm_output_sched to fix rtp generation issues
+ * tests: Add osmux2 testsuite
+ * osmux: Set Marker bit on osmux frame loss detected
+ * osmux: Move examples and tests to use new output APIs
+
+ [ Max ]
+ * Enable sanitize for CI tests
+
+ [ Stefan Sperling ]
+ * add support for flushing and destroying a server-side stream
+
+ [ Alexey ]
+ * Update README.md
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Thu, 03 May 2018 16:55:21 +0200
+
libosmo-netif (0.1.1) unstable; urgency=medium
* New upstream release.
diff --git a/src/Makefile.am b/src/Makefile.am
index 79e3685..9dc5e46 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,6 +1,6 @@
# 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=4:0:0
+LIBVERSION=5:0:1
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)