pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-netif/+/41546?usp=email )
Change subject: Bump version: 1.6.0.19-8edf-dirty → 1.7.0 ......................................................................
Bump version: 1.6.0.19-8edf-dirty → 1.7.0
Change-Id: I1a3298de6ce0e08dcecbc98c4c16c35df2961b4c --- M TODO-RELEASE M configure.ac M contrib/libosmo-netif.spec.in M debian/changelog M debian/control M src/Makefile.am 6 files changed, 43 insertions(+), 13 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/46/41546/1
diff --git a/TODO-RELEASE b/TODO-RELEASE index 87e1b95..0ed7189 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -7,6 +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 -stream add OSMO_STREAM_{CLI,SRV,SRV_LINK}_TCP_SOCKOPT_KEEP*, osmo_stream_srv_set_param() -stream add OSMO_STREAM_{CLI,SRV,SRV_LINK}_TCP_SOCKOPT_USER_TIMEOUT -stream add osmo_stream_srv_set_tx_queue_max_length() diff --git a/configure.ac b/configure.ac index 6455319..e76f418 100644 --- a/configure.ac +++ b/configure.ac @@ -89,10 +89,10 @@ dnl Generate the output AM_CONFIG_HEADER(config.h)
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.11.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.11.0) -PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.11.0) -PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.12.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.12.0) +PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.12.0) +PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.12.0)
AC_ARG_ENABLE([libsctp], [AS_HELP_STRING([--disable-libsctp], [Do not enable socket multiaddr APIs requiring libsctp])], [ENABLE_LIBSCTP=$enableval], [ENABLE_LIBSCTP="yes"]) diff --git a/contrib/libosmo-netif.spec.in b/contrib/libosmo-netif.spec.in index 5b182ff..61dca6d 100644 --- a/contrib/libosmo-netif.spec.in +++ b/contrib/libosmo-netif.spec.in @@ -24,10 +24,10 @@ BuildRequires: libtool >= 2 BuildRequires: lksctp-tools-devel BuildRequires: pkgconfig >= 0.20 -BuildRequires: pkgconfig(libosmocore) >= 1.11.0 -BuildRequires: pkgconfig(libosmogsm) >= 1.11.0 -BuildRequires: pkgconfig(libosmocodec) >= 1.11.0 -BuildRequires: pkgconfig(libosmovty) >= 1.11.0 +BuildRequires: pkgconfig(libosmocore) >= 1.12.0 +BuildRequires: pkgconfig(libosmogsm) >= 1.12.0 +BuildRequires: pkgconfig(libosmocodec) >= 1.12.0 +BuildRequires: pkgconfig(libosmovty) >= 1.12.0
%description Network interface demuxer library for OsmoCom projects. diff --git a/debian/changelog b/debian/changelog index cb8dbbd..daa547a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,36 @@ +libosmo-netif (1.7.0) unstable; urgency=medium + + [ Mychaela N. Falconia ] + * .gitignore: add utils/osmo-amr-inspect + * bring twjit into libosmo-netif + * bring twrtp into libosmo-netif + * doc: add twrtp guide document + + [ Vadim Yanitskiy ] + * stream_{cli,srv}: fix copy-paste in API docs + + [ Pau Espin Pedrol ] + * cosmetic: stream: Fix line indentation + * stream: Improve error logging sctp_recvmsg without sctp_sndrcvinfo + * stream_srv: Improve API documentation + * stream: Support configuring TCP keep-alive pars + * stream: Support configuring TCP_USER_TIMEOUT parameter + * osmux: Use while loop to tear down entire llist + * cosmetic: Fix typo in doc of osmo_stream_srv_get_sockname() + * stream: Support overwriting tx_queue_max_length per srv conn + * netif/sctp.h: Add missing dep netinet/sctp.h + + [ Neels Hofmeyr ] + * add osmo_stream_*_set_name_f() + + [ Oliver Smith ] + * include/osmocom/netif/Makefile: format osmonetif_HEADERS + * Generate a version.h file + * Fix time_t prints for debian 13 armv7l + * Use %zu for size_t + + -- Pau Espin Pedrol pespin@sysmocom.de Wed, 03 Dec 2025 17:37:54 +0100 + libosmo-netif (1.6.0) unstable; urgency=medium
[ Harald Welte ] diff --git a/debian/control b/debian/control index 4ff4249..acaa93d 100644 --- a/debian/control +++ b/debian/control @@ -11,7 +11,7 @@ libdpkg-perl, git, doxygen, - libosmocore-dev (>= 1.11.0), + libosmocore-dev (>= 1.12.0), pkg-config, libpcap0.8-dev, libsctp-dev diff --git a/src/Makefile.am b/src/Makefile.am index b354e53..753bac2 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=14:0:3 +LIBVERSION=15:0:4
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir) AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) \