osmith has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-pcu/+/37581?usp=email )

Change subject: Bump version: 1.4.0.15-e192 → 1.5.0
......................................................................

Bump version: 1.4.0.15-e192 → 1.5.0

Change-Id: I46d18db47b0149cbfa549b197ae015699c58e098
---
M TODO-RELEASE
M configure.ac
M debian/changelog
M debian/control
4 files changed, 52 insertions(+), 15 deletions(-)

Approvals:
  Jenkins Builder: Verified
  pespin: Looks good to me, approved




diff --git a/TODO-RELEASE b/TODO-RELEASE
index 73ad83b..0ed7189 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -1,10 +1,9 @@
 # When cleaning up this file: bump API version in corresponding Makefile.am 
and rename corresponding debian/lib*.install
-# according to 
https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info
-# In short:
+# 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:0.
+# 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
-libosmocore > 1.9.0            added gsm0502_fncmp()
+#library       what                    description / commit summary line
diff --git a/configure.ac b/configure.ac
index 0ce9862..2865225 100644
--- a/configure.ac
+++ b/configure.ac
@@ -82,11 +82,11 @@
 fi

 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(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)

 AC_MSG_CHECKING([whether to enable direct DSP access for PDCH of sysmocom-bts])
 AC_ARG_ENABLE(sysmocom-dsp,
@@ -175,8 +175,8 @@
 AC_MSG_RESULT([$enable_er_e1_ccu])
 AM_CONDITIONAL(ENABLE_ER_E1_CCU, test "x$enable_er_e1_ccu" = "xyes")
 AS_IF([test "x$enable_er_e1_ccu" = "xyes"], [
-       PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.5.0)
-       PKG_CHECK_MODULES(LIBOSMOTRAU, libosmotrau >= 1.5.0)
+       PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.6.0)
+       PKG_CHECK_MODULES(LIBOSMOTRAU, libosmotrau >= 1.6.0)
 ])

 AC_ARG_ENABLE([vty_tests],
diff --git a/debian/changelog b/debian/changelog
index 3e50d66..0ee5e5c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,32 @@
+osmo-pcu (1.5.0) unstable; urgency=medium
+
+  [ Oliver Smith ]
+  * Revert "Revert "pdch_ul_controller: migrate from fn_cmp() to 
gsm0502_fncmp()""
+  * contrib: remove rpm spec file
+  * contrib/systemd: run as osmocom user
+
+  [ Pau Espin Pedrol ]
+  * tbf_ul_fsm: Fix wrong cast
+  * cosmetic: TbfTest: fix typo in comment
+  * Make sure GprsMs free() also frees its tbfs
+  * README.md: Remove 'multi-slot ul tbf' line from 'Current Limitations'
+  * bts: Drop no-longer existing GprsMsStorage reference
+  * tbf.h: Fix wrong type declaration of field dl_ass_fsm
+  * tbf_ul.h: Mark empty param list as void
+  * doc: Introduce code architecture section with main class diagram
+
+  [ Harald Welte ]
+  * fix license headers
+  * doc: Mention the `gb-dialect` vty option, as it is quite essential
+
+  [ Vadim Yanitskiy ]
+  * README.md: cosmetic: fix a typo
+
+  [ Philipp Maier ]
+  * pcuif_sock: do not retry when sending PCU version
+
+ -- Oliver Smith <[email protected]>  Wed, 24 Jul 2024 16:16:26 +0200
+
 osmo-pcu (1.4.0) unstable; urgency=medium

   [ Pau Espin Pedrol ]
diff --git a/debian/control b/debian/control
index 0f87441..f839eb2 100644
--- a/debian/control
+++ b/debian/control
@@ -6,9 +6,9 @@
                dh-autoreconf,
                autotools-dev,
                pkg-config,
-              libosmo-abis-dev (>= 1.5.0),
-               libosmocore-dev (>= 1.9.0),
-               osmo-gsm-manuals-dev (>= 1.5.0)
+               libosmo-abis-dev (>= 1.6.0),
+               libosmocore-dev (>= 1.10.0),
+               osmo-gsm-manuals-dev (>= 1.6.0)
 Standards-Version: 3.9.8
 Homepage: http://osmocom.org/projects/osmopcu
 Vcs-Git: https://gitea.osmocom.org/cellular-infrastructure/osmo-pcu

--
To view, visit https://gerrit.osmocom.org/c/osmo-pcu/+/37581?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Change-Id: I46d18db47b0149cbfa549b197ae015699c58e098
Gerrit-Change-Number: 37581
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <[email protected]>
Gerrit-Reviewer: pespin <[email protected]>
Gerrit-MessageType: merged

Reply via email to