pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-pfcp/+/41549?usp=email )
Change subject: Bump version: 0.5.0.4-1f8c-dirty → 0.6.0 ......................................................................
Bump version: 0.5.0.4-1f8c-dirty → 0.6.0
Change-Id: Iba35aed8d4768cf3e25040631ea3e63a4c90a906 --- M TODO-RELEASE M configure.ac M debian/changelog M debian/control M src/libosmo-pfcp/Makefile.am 5 files changed, 17 insertions(+), 7 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/TODO-RELEASE b/TODO-RELEASE index 6bcdfb2..0ed7189 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 -libosmo-pfcp add osmo_pfcp_ie_node_id_cmp() -libosmo-pfcp add osmo_pfcp_cp_peer_free() diff --git a/configure.ac b/configure.ac index 383bf56..bba78cd 100644 --- a/configure.ac +++ b/configure.ac @@ -37,8 +37,8 @@ PKG_PROG_PKG_CONFIG([0.20])
dnl checks for libraries -PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.11.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.12.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.12.0)
dnl checks for header files AC_HEADER_STDC diff --git a/debian/changelog b/debian/changelog index 9b34c78..6ecfc66 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +libosmo-pfcp (0.6.0) unstable; urgency=medium + + [ Pau Espin Pedrol ] + * pfcp_endpoint: Increase sent_{requests,responses}_by_seq_nr hashtable size + * pfcp_msg: Add osmo_pfcp_ie_node_id_cmp() + * Introduce API osmo_pfcp_cp_peer_free() + + [ Oliver Smith ] + * Generate a version.h file + + -- Pau Espin Pedrol pespin@sysmocom.de Wed, 03 Dec 2025 18:14:57 +0100 + libosmo-pfcp (0.5.0) unstable; urgency=medium
[ Neels Janosch Hofmeyr ] diff --git a/debian/control b/debian/control index 6615ae6..c2f1005 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ automake, libtool, pkg-config, - libosmocore-dev (>= 1.11.0), + libosmocore-dev (>= 1.12.0), libtalloc-dev (>= 2.1.0) Standards-Version: 3.9.8 Vcs-Git: https://gitea.osmocom.org/osmocom/libosmo-pfcp @@ -44,7 +44,7 @@ Section: libdevel Depends: ${misc:Depends}, libosmo-gtlv1 (= ${binary:Version}), - libosmocore-dev (>= 1.11.0), + libosmocore-dev (>= 1.12.0), libtalloc-dev (>= 2.1.0) Description: Development files for libosmo-gtlv libosmo-gtlv implements decoding, encoding and logging of protocols using a diff --git a/src/libosmo-pfcp/Makefile.am b/src/libosmo-pfcp/Makefile.am index 66e0ed4..a0f4a7c 100644 --- a/src/libosmo-pfcp/Makefile.am +++ b/src/libosmo-pfcp/Makefile.am @@ -34,7 +34,7 @@ # 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=4:0:0 +LIBVERSION=5:0:1
libosmo_pfcp_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined -export-symbols-regex '^osmo_'