aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-06-28 18:09:49 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2022-06-28 18:09:49 +0200
commitbea94d8edf01c3ddd42151f12c78a31cde8a8c8a (patch)
tree72f6539d3609385798f6eb62ff030f8227162bdf
parentd1ab58514e6181c9a643e4a255f6f2cc302f0dc6 (diff)
Bump version: 1.1.0.14-d1ab-dirty → 1.2.01.2.0
-rw-r--r--TODO-RELEASE2
-rw-r--r--configure.ac6
-rw-r--r--contrib/libosmo-netif.spec.in4
-rw-r--r--debian/changelog26
-rw-r--r--debian/control2
-rw-r--r--src/Makefile.am2
-rw-r--r--tests/osmo-pcap-test/configure.ac2
7 files changed, 34 insertions, 10 deletions
diff --git a/TODO-RELEASE b/TODO-RELEASE
index b146231..d0852fc 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -7,5 +7,3 @@
# If any interfaces have been added since the last public release: c:r:a + 1.
# If any interfaces have been removed or changed since the last public release: c:r:0.
#library what description / commit summary line
-sctp.h new APIs
-prim.h new data type, APIs
diff --git a/configure.ac b/configure.ac
index 31b7181..5bb0b5c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -89,8 +89,8 @@ AC_SUBST(SYMBOL_VISIBILITY)
dnl Generate the output
AM_CONFIG_HEADER(config.h)
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.5.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.7.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.7.0)
AC_ARG_ENABLE([lapd_examples],
[AS_HELP_STRING(
@@ -99,7 +99,7 @@ AC_ARG_ENABLE([lapd_examples],
)],
[lapd_examples=$enableval], [lapd_examples="no"])
AS_IF([test "x$lapd_examples" = "xyes"], [
- PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.1.0)
+ PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.3.0)
AC_DEFINE([ENABLE_LAPD], [1], [Enable LAPD examples])
])
AM_CONDITIONAL(ENABLE_LAPD, test "x$lapd_examples" = "xyes")
diff --git a/contrib/libosmo-netif.spec.in b/contrib/libosmo-netif.spec.in
index 4b25378..eeda3e6 100644
--- a/contrib/libosmo-netif.spec.in
+++ b/contrib/libosmo-netif.spec.in
@@ -24,8 +24,8 @@ BuildRequires: automake
BuildRequires: libtool >= 2
BuildRequires: lksctp-tools-devel
BuildRequires: pkgconfig >= 0.20
-BuildRequires: pkgconfig(libosmocore) >= 1.5.0
-BuildRequires: pkgconfig(libosmogsm) >= 1.5.0
+BuildRequires: pkgconfig(libosmocore) >= 1.7.0
+BuildRequires: pkgconfig(libosmogsm) >= 1.7.0
%description
Network interface demuxer library for OsmoCom projects.
diff --git a/debian/changelog b/debian/changelog
index eaa5dda..b283cc6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,29 @@
+libosmo-netif (1.2.0) unstable; urgency=medium
+
+ [ Pau Espin Pedrol ]
+ * Introduce sctp.h to provide SCTP related functionalities
+ * stream: Factor out sctp_recvmg long code chunk
+ * stream: Add support for AF_UNIX sockets
+ * Introduce osmo_prim_srv APIs
+ * prim: Add internal CTL SAPI to negotiate SAP versions
+ * prim: return last error code
+ * amr: Fix FormatType from parsing BWE AMR header
+ * amr: Fix length check in bwe<->iuup converters
+
+ [ Alexander Couzens ]
+ * amr: don't rely on pad bits to be zero
+ * export osmo_amr_bits
+ * amr: Introduce APIs to convert BE to IuUP/IuFP format
+
+ [ Philipp Maier ]
+ * amr: cosmetic: fix grammer in comment
+ * amr_test: increase test coverage for oa / bwe conversation
+
+ [ Harald Welte ]
+ * update git URLs (git -> https; gitea)
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Tue, 28 Jun 2022 18:09:49 +0200
+
libosmo-netif (1.1.0) unstable; urgency=medium
[ Vadim Yanitskiy ]
diff --git a/debian/control b/debian/control
index fecb627..c3596b3 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends: debhelper (>= 9),
libdpkg-perl,
git,
doxygen,
- libosmocore-dev (>= 1.5.0),
+ libosmocore-dev (>= 1.7.0),
pkg-config,
libpcap0.8-dev,
libsctp-dev
diff --git a/src/Makefile.am b/src/Makefile.am
index 5c23896..60211e1 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=9:1:1
+LIBVERSION=10:0:2
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
diff --git a/tests/osmo-pcap-test/configure.ac b/tests/osmo-pcap-test/configure.ac
index 7cb31b0..15b176a 100644
--- a/tests/osmo-pcap-test/configure.ac
+++ b/tests/osmo-pcap-test/configure.ac
@@ -16,7 +16,7 @@ PKG_PROG_PKG_CONFIG([0.20])
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.7.0)
AC_PROG_CC
AC_DISABLE_STATIC