osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-hlr/+/39513?usp=email )
Change subject: Bump version: 1.8.0.15-74e4-dirty → 1.9.0 ......................................................................
Bump version: 1.8.0.15-74e4-dirty → 1.9.0
Change-Id: I1acb428ed42dd2217a734bedd286bbc60d0cc526 --- M TODO-RELEASE M configure.ac M debian/changelog M debian/control M src/gsupclient/Makefile.am 5 files changed, 36 insertions(+), 12 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hlr refs/changes/13/39513/1
diff --git a/TODO-RELEASE b/TODO-RELEASE index f14e8b5..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 -libosmo-gsup-client new API osmo_gsup_client_{get,set}_data(), - osmo_gsup_client_get_rem_addr(), osmo_gsup_client_get_rem_port(), - osmo_gsup_client_is_connected(), osmo_gsup_client_get_ipaccess_unit() \ No newline at end of file diff --git a/configure.ac b/configure.ac index 31ba870..48f4c58 100644 --- a/configure.ac +++ b/configure.ac @@ -41,11 +41,11 @@
PKG_CHECK_MODULES(TALLOC, [talloc >= 2.0.1])
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.10.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.10.0) -PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.10.0) -PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.10.0) -PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.6.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 2.0.0)
PKG_CHECK_MODULES(SQLITE3, sqlite3)
diff --git a/debian/changelog b/debian/changelog index 66b4a80..dbf1ec1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,30 @@ +osmo-hlr (1.9.0) unstable; urgency=medium + + [ Vadim Yanitskiy ] + * subscriber-create-on-demand: rework configuration + * subscriber-create-on-demand: add mode for MSISDN=IMSI + + [ Alexander Couzens ] + * gsupclient: Introduce gsup_client_mux + * gsupclient: add missing SPDX line + * debian/copyright: add gsup_client under GPLv2+ + + [ Pau Espin Pedrol ] + * gsup: Replace deprecated ipa_msg_push_header() + * jenkins.sh: libosmo-netif no longer depends on libosmo-abis + * Drop use of libosmo-abis osmocom/abis/ipaccess.h + * gsup_client: Add new APIs to avoid users accessing struct fields + * gsup_client: Avoid double memset 0 + * Drop unneeded use of abis/ipa.h header + * jenkins.sh: Use --disable-doxygen configure param + + [ Mychaela N. Falconia ] + * vty: always emit reject-cause lines in saved config + * change default reject cause to plmn-not-allowed + * change default no-proxy reject cause to net-fail + + -- Oliver Smith osmith@sysmocom.de Wed, 12 Feb 2025 12:17:52 +0100 + osmo-hlr (1.8.0) unstable; urgency=medium
[ Vadim Yanitskiy ] diff --git a/debian/control b/debian/control index 956e273..ca7df2e 100644 --- a/debian/control +++ b/debian/control @@ -7,9 +7,9 @@ dh-autoreconf, autotools-dev, python3-minimal, - libosmocore-dev (>= 1.10.0), - libosmo-abis-dev (>= 1.6.0), - libosmo-netif-dev (>= 1.5.0), + libosmocore-dev (>= 1.11.0), + libosmo-abis-dev (>= 2.0.0), + libosmo-netif-dev (>= 1.6.0), libsqlite3-dev, sqlite3, osmo-gsm-manuals-dev (>= 1.6.0) diff --git a/src/gsupclient/Makefile.am b/src/gsupclient/Makefile.am index ab9c478..7611f6e 100644 --- a/src/gsupclient/Makefile.am +++ b/src/gsupclient/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=1:0:1 +LIBVERSION=2:0:2
AM_CFLAGS = -Wall $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)/include \ $(TALLOC_CFLAGS) $(LIBOSMOCORE_CFLAGS) $(LIBOSMOABIS_CFLAGS)