osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/42622?usp=email )
Change subject: Bump version: 1.13.1.12-8e6ea → 1.14.0 ......................................................................
Bump version: 1.13.1.12-8e6ea → 1.14.0
Change-Id: Ifa079c76148fd25f543b7875d3d89b35c19ffe6b --- M TODO-RELEASE M debian/changelog M src/core/Makefile.am M src/gsm/Makefile.am 4 files changed, 24 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/22/42622/1
diff --git a/TODO-RELEASE b/TODO-RELEASE index ee01c5b..0ed7189 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -7,4 +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 -core add osmo_netdev_del_addr() diff --git a/debian/changelog b/debian/changelog index 5f6c887..a0eaac3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,25 @@ +libosmocore (1.14.0) unstable; urgency=medium + + [ Eric Wild ] + * core: fix config.h + + [ Vadim Yanitskiy ] + * gsup: encode_pdp_info(): fix wrong pdp_address index + * socket: osmo_sockaddr_from_str_and_uint(): fix memleak + * stats: osmo_stats_reporter_udp_open(): fix unconditional jump + * gsm48: fix missing/misspelled value-strings + * gsm48: remove duplicate GSM48_MT_RR_HANDO_INFO + * gsmtap_util: gsmtap_gsm_channel_names[]: fix PTCCH string + * netdev: netdev_mnl_set_mtu(): drop unneeded variables + + [ Pau Espin Pedrol ] + * osmo_io: Rewrite iofd_handle_send_completion() to fix multiple issues + * osmo_io: Fix msgb memleak if iofd is unregistered during write_cb with >1 io buffers + * netdev: Add API osmo_netdev_del_addr() + * tun: Fix typo in log line and comment + + -- Oliver Smith osmith@sysmocom.de Wed, 15 Apr 2026 11:48:23 +0200 + libosmocore (1.13.1) unstable; urgency=medium
[ Eric Wild ] diff --git a/src/core/Makefile.am b/src/core/Makefile.am index b89cb70..a03ef7c 100644 --- a/src/core/Makefile.am +++ b/src/core/Makefile.am @@ -1,7 +1,7 @@ # This is _NOT_ the library release version, it's an API version. # Please read chapter "Library interface versions" of the libtool documentation # before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html -LIBVERSION=25:0:3 +LIBVERSION=26:0:4
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir) AM_CFLAGS = -Wall $(TALLOC_CFLAGS) $(PTHREAD_CFLAGS) $(LIBSCTP_CFLAGS) $(LIBMNL_CFLAGS) $(URING_CFLAGS) diff --git a/src/gsm/Makefile.am b/src/gsm/Makefile.am index e874978..92892b5 100644 --- a/src/gsm/Makefile.am +++ b/src/gsm/Makefile.am @@ -1,7 +1,7 @@ # This is _NOT_ the library release version, it's an API version. # Please read chapter "Library interface versions" of the libtool documentation # before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html -LIBVERSION=24:0:4 +LIBVERSION=24:1:4
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include AM_CFLAGS = -Wall $(TALLOC_CFLAGS)