aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-07-27 18:31:43 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-07-27 18:31:43 +0200
commit322dbbeaa29cb90c6917fa7e78a66b96b8ce3689 (patch)
tree0250b99b93afc23367a84916c2fd9120264244e9
parentac33f6fbd2d55b0eb52b42e0d466be4c39914020 (diff)
Bump version: 0.2.0.6-ac33-dirty → 0.3.00.3.0
-rw-r--r--configure.ac6
-rw-r--r--debian/changelog14
-rw-r--r--debian/control8
-rw-r--r--debian/libosmonetif6.install (renamed from debian/libosmonetif4.install)0
-rw-r--r--src/Makefile.am2
5 files changed, 22 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index f9346c0..4246c00 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.11.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.11.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.12.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.12.0)
dnl FIXME: We depend on libosmoabis by now until we can move LAPD code here
-PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.5.0)
+PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.5.1)
old_LIBS=$LIBS
AC_SEARCH_LIBS([sctp_send], [sctp], [
diff --git a/debian/changelog b/debian/changelog
index aa8e1fe..c08bf9e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+libosmo-netif (0.3.0) unstable; urgency=medium
+
+ [ Pau Espin Pedrol ]
+ * tests: jibuf_test: Set some functions as static
+ * tests: jibuf_test: Add scenario to show out-of-order bug
+ * jibuf: Fix out-of-order seq queue around syncpoints
+ * osmux: change log lvl of batch full to debug
+
+ [ Harald Welte ]
+ * remove "channel" layer
+ * stream.c: Use non-blocking connect in osmo_stream_cli
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Fri, 27 Jul 2018 18:31:42 +0200
+
libosmo-netif (0.2.0) unstable; urgency=medium
[ Neels Hofmeyr ]
diff --git a/debian/control b/debian/control
index cec723d..b6bc17d 100644
--- a/debian/control
+++ b/debian/control
@@ -21,7 +21,7 @@ Vcs-Browser: http://git.osmocom.org/libosmo-netif/
Vcs-Git: git://git.osmocom.org/libosmo-netif.git
Homepage: https://projects.osmocom.org/projects/libosmo-netif
-Package: libosmonetif4
+Package: libosmonetif6
Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -38,7 +38,7 @@ Architecture: any
Depends: ${misc:Depends},
libosmocore-dev,
libosmocore,
- libosmonetif4 (= ${binary:Version})
+ libosmonetif6 (= ${binary:Version})
Multi-Arch: same
Description: Development headers for Osmocom network interface
The libosmo-netif library is one of the libraries needed by the
@@ -52,7 +52,7 @@ Package: libosmo-netif-doc
Architecture: all
Section: doc
Depends: ${misc:Depends},
- libosmonetif4,
+ libosmonetif6,
libjs-jquery
Description: Documentation for the Osmo network interface library
The libosmo-netif library is one of the libraries needed by the
@@ -65,7 +65,7 @@ Package: libosmo-netif-dbg
Section: debug
Architecture: any
Priority: extra
-Depends: libosmonetif4 (= ${binary:Version}), ${misc:Depends}
+Depends: libosmonetif6 (= ${binary:Version}), ${misc:Depends}
Multi-Arch: same
Description: Debug symbols for Osmocom network interface library
The libosmo-netif library is one of the libraries needed by the
diff --git a/debian/libosmonetif4.install b/debian/libosmonetif6.install
index 7a36b86..7a36b86 100644
--- a/debian/libosmonetif4.install
+++ b/debian/libosmonetif6.install
diff --git a/src/Makefile.am b/src/Makefile.am
index 9951ca4..d88f0a7 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=5:0:1
+LIBVERSION=6:0:0
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)