Skip to content

Commit

Permalink
Bump version: 1.11.1.22-bea6a-dirty → 1.12.0
Browse files Browse the repository at this point in the history
Change-Id: I9331fb5c69c5d00d419e859f1fa81d6e231b0318
  • Loading branch information
osmith42 committed Jul 24, 2024
1 parent bea6a0f commit f8d248e
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 22 deletions.
11 changes: 9 additions & 2 deletions TODO-RELEASE
Original file line number Diff line number Diff line change
@@ -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)
# 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
22 changes: 11 additions & 11 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
40 changes: 40 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Wed, 24 Jul 2024 17:31:38 +0200

osmo-sgsn (1.11.1) unstable; urgency=medium

[ Philipp Maier ]
Expand Down
18 changes: 9 additions & 9 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8d248e

Please sign in to comment.