From f8d248e2d11f0bcee155db2db81c1d47ec8a5807 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 24 Jul 2024 17:31:38 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.11.1.22-bea6a-dirty=20?= =?UTF-8?q?=E2=86=92=201.12.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I9331fb5c69c5d00d419e859f1fa81d6e231b0318 --- TODO-RELEASE | 11 +++++++++-- configure.ac | 22 +++++++++++----------- debian/changelog | 40 ++++++++++++++++++++++++++++++++++++++++ debian/control | 18 +++++++++--------- 4 files changed, 69 insertions(+), 22 deletions(-) diff --git a/TODO-RELEASE b/TODO-RELEASE index df983c1c4..0ed7189a4 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -1,2 +1,9 @@ -#component what description / commit summary line -libosmocore > 1.9.0 gsup.h: Using new fields in struct osmo_gsup_pdp_info (ABI break) \ No newline at end of file +# When cleaning up this file: bump API version in corresponding Makefile.am and rename corresponding debian/lib*.install +# according to https://osmocom.org/projects/cellular-infrastructure/wiki/Make_a_new_release +# In short: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info +# LIBVERSION=c:r:a +# If the library source code has changed at all since the last update, then increment revision: c:r + 1:a. +# If any interfaces have been added, removed, or changed since the last update: c + 1:0:a. +# 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 diff --git a/configure.ac b/configure.ac index 399b466f4..7e318aa0a 100644 --- a/configure.ac +++ b/configure.ac @@ -38,23 +38,23 @@ dnl use a defined standard across all builds and don't depend on compiler defaul CFLAGS="$CFLAGS -std=gnu11" dnl checks for libraries -PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.9.0) -PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.9.0) -PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.9.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.9.0) -PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 1.9.0) -PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.5.0) -PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.4.0) -PKG_CHECK_MODULES(LIBOSMOGSUPCLIENT, libosmo-gsup-client >= 1.7.0) -PKG_CHECK_MODULES(LIBGTP, libgtp >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.10.0) +PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.10.0) +PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.10.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.10.0) +PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 1.10.0) +PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.6.0) +PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.5.0) +PKG_CHECK_MODULES(LIBOSMOGSUPCLIENT, libosmo-gsup-client >= 1.8.0) +PKG_CHECK_MODULES(LIBGTP, libgtp >= 1.12.0) # Enable/disable 3G aka IuPS + IuCS support? AC_ARG_ENABLE([iu], [AS_HELP_STRING([--enable-iu], [Build 3G support, aka IuPS and IuCS interfaces])], [osmo_ac_iu="$enableval"],[osmo_ac_iu="no"]) if test "x$osmo_ac_iu" = "xyes" ; then - PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 1.8.0) + PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 1.9.0) PKG_CHECK_MODULES(LIBASN1C, libasn1c >= 0.9.30) - PKG_CHECK_MODULES(LIBOSMORANAP, libosmo-ranap >= 1.5.0) + PKG_CHECK_MODULES(LIBOSMORANAP, libosmo-ranap >= 1.6.0) AC_DEFINE(BUILD_IU, 1, [Define if we want to build IuPS and IuCS interfaces support]) fi AM_CONDITIONAL(BUILD_IU, test "x$osmo_ac_iu" = "xyes") diff --git a/debian/changelog b/debian/changelog index cb629fbdc..a1f0216d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,43 @@ +osmo-sgsn (1.12.0) unstable; urgency=medium + + [ Andreas Eversberg ] + * Use uniform log format for default config files + + [ Vadim Yanitskiy ] + * build: include README.md into the release tarball + * gmm: cosmetic: fix preprocessor macro formatting + * gmm: mmctx_timer_stop(): warn about timer not running + * VTY: move default settings to sgsn_instance_alloc() + * VTY: sync default UMTS UEA config with osmo-msc + * README.md: cosmetic: fix a typo + + [ Pau Espin Pedrol ] + * gsup: Use new libosmogsm struct osmo_gsup_pdp_info fields + + [ Harald Welte ] + * Add funding link to github mirror + * README.md: Overhaul (more links; improved formatting) + * README.md: Add Forum and Issue Tracker sections + + [ Max ] + * .deb/.rpm: add osmocom user during package install + + [ Oliver Smith ] + * contrib/osmo-sgsn.spec: fix build for almalinux:8 + * .deb/.rpm: various fixes related to non-root + * contrib: remove rpm spec file + * debian/postinst: add checks, be verbose + * sgsn/sgsn_vty: create state-dir + * debian/osmo-gtphub.init: delete + * doc: set state-dir to /var/lib/osmocom/osmo-sgsn + + [ Alexander Couzens ] + * docs: replace legacy NS with new NS2 chapters + * docs: update year to 2024 + * docs: front page: use https:// instead of http:// + + -- Oliver Smith Wed, 24 Jul 2024 17:31:38 +0200 + osmo-sgsn (1.11.1) unstable; urgency=medium [ Philipp Maier ] diff --git a/debian/control b/debian/control index aa594553b..c9c224b66 100644 --- a/debian/control +++ b/debian/control @@ -11,16 +11,16 @@ Build-Depends: debhelper (>= 10), pkg-config, libtalloc-dev, libc-ares-dev, - libgtp-dev (>= 1.11.0), - libosmocore-dev (>= 1.9.0), - libosmo-abis-dev (>= 1.5.0), - libosmo-netif-dev (>= 1.4.0), - libosmo-gsup-client-dev (>= 1.7.0), + libgtp-dev (>= 1.12.0), + libosmocore-dev (>= 1.10.0), + libosmo-abis-dev (>= 1.6.0), + libosmo-netif-dev (>= 1.5.0), + libosmo-gsup-client-dev (>= 1.8.0), libasn1c-dev (>= 0.9.30), - libosmo-ranap-dev (>= 1.5.0), - libosmo-sigtran-dev (>= 1.8.0), - libosmo-sccp-dev (>= 1.8.0), - osmo-gsm-manuals-dev (>= 1.5.0) + libosmo-ranap-dev (>= 1.6.0), + libosmo-sigtran-dev (>= 1.9.0), + libosmo-sccp-dev (>= 1.9.0), + osmo-gsm-manuals-dev (>= 1.6.0) Standards-Version: 3.9.8 Vcs-Git: https://gitea.osmocom.org/cellular-infrastructure/osmo-sgsn Vcs-Browser: https://gitea.osmocom.org/cellular-infrastructure/osmo-sgsn