aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-05-10 12:40:04 +0200
committerHarald Welte <laforge@gnumonks.org>2019-05-10 12:40:04 +0200
commitfd339712c4bc79e60e257f563771470a5214fbd6 (patch)
tree1aa382ca2026abf9b4fe07e9cf40ff3cd79b1d87
parente380b38e287753a035b005a75b09ad9bcbae5977 (diff)
Bump version: 0.4.0.1-738f → 0.5.00.5.0
-rw-r--r--debian/changelog37
-rw-r--r--src/Makefile.am2
2 files changed, 38 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 6c56148..e3b19c9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,40 @@
+libosmo-netif (0.5.0) unstable; urgency=medium
+
+ [ Max ]
+ * Stream examples: filter internal logging
+ * Stream examples: log sent/received bytes
+ * Stream examples: fix server's endless loop
+ * Add missing include
+ * Cosmetic: use #pragma once as include guard
+ * Stream client: fix doxygen typo
+ * Stream examples: print accepted client address
+ * Stream client: update logging
+ * Add socket name functions to stream client/server
+ * Stream client: fix disconnection logic
+ * Stream examples: fix typos in error message
+ * Ignore test binaries
+ * Stream client: report reconnection event as INFO
+ * Add stream client/server test
+ * Stream client: add disconnect callback
+ * Deprecate osmo_stream_cli_open2()
+
+ [ Philipp Maier ]
+ * AMR: add spec reference for AMR frame types
+ * AMR: add define constants for AMR payload length
+ * AMR: add functions to convert between bw-efficient and octet-aligned
+ * amr: cosmetic: correct sourcecode formatting
+ * amr: be sure result of osmo_amr_bwe_to_oa() fits into int buf
+ * amr: use sizeof(struct amr_hdr) when working with amr header length
+
+ [ Harald Welte ]
+ * debian: Add BuildDepends on libpcap0.8-dev
+
+ [ Oliver Smith ]
+ * gitignore: add amr_test
+ * tests: AM_LDFLAGS = -noinstall for all tests
+
+ -- Harald Welte <laforge@gnumonks.org> Fri, 10 May 2019 12:40:03 +0200
+
libosmo-netif (0.4.0) unstable; urgency=medium
[ Neels Hofmeyr ]
diff --git a/src/Makefile.am b/src/Makefile.am
index d92d0f6..4d8b900 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=6:1:0
+LIBVERSION=7:0:1
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)