osmith has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/37564?usp=email )
Change subject: osmo-release: fix libversion updating comment
......................................................................
osmo-release: fix libversion updating comment
The related manual says:
> 4. If any interfaces have been added, removed, or changed since the
> last update, increment current, and set revision to 0.
So the age should not be modified in that case.
Related: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info…
Change-Id: Idd26781fe458b41469c123b25a51fb2c338c65ec
---
M osmo-release.sh
1 file changed, 18 insertions(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, approved
diff --git a/osmo-release.sh b/osmo-release.sh
index 5d4cb28..61adf57 100755
--- a/osmo-release.sh
+++ b/osmo-release.sh
@@ -244,7 +244,7 @@
echo "# In short: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info…" >> TODO-RELEASE
echo "# LIBVERSION=c:r:a" >> TODO-RELEASE
echo "# If the library source code has changed at all since the last update, then increment revision: c:r + 1:a." >> TODO-RELEASE
- echo "# If any interfaces have been added, removed, or changed since the last update: c + 1:0:0." >> TODO-RELEASE
+ echo "# If any interfaces have been added, removed, or changed since the last update: c + 1:0:a." >> TODO-RELEASE
echo "# If any interfaces have been added since the last public release: c:r:a + 1." >> TODO-RELEASE
echo "# If any interfaces have been removed or changed since the last public release: c:r:0." >> TODO-RELEASE
echo "#library what description / commit summary line" >> TODO-RELEASE
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/37564?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Idd26781fe458b41469c123b25a51fb2c338c65ec
Gerrit-Change-Number: 37564
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged
osmith has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/37563?usp=email )
Change subject: osmo-release: rework cleaning of TODO-RELEASE
......................................................................
osmo-release: rework cleaning of TODO-RELEASE
Instead of removing all non-comment lines from the existing TODO-RELEASE
file, replace it with a template that is now stored inside the
osmo-release.sh script. This allows modifying the comment lines
consistently across all repositories when making a new release.
Change-Id: I38a40f7a6d71d67acf636ee9a1445db38e3bdf0d
---
M osmo-release.sh
1 file changed, 30 insertions(+), 3 deletions(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, approved
diff --git a/osmo-release.sh b/osmo-release.sh
index 9edfccd..5d4cb28 100755
--- a/osmo-release.sh
+++ b/osmo-release.sh
@@ -237,6 +237,20 @@
fi
}
+clean_todo_release() {
+ rm -f TODO-RELEASE
+ echo "# When cleaning up this file: bump API version in corresponding Makefile.am and rename corresponding debian/lib*.install" >> TODO-RELEASE
+ echo "# according to https://osmocom.org/projects/cellular-infrastructure/wiki/Make_a_new_release" >> TODO-RELEASE
+ echo "# In short: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info…" >> TODO-RELEASE
+ echo "# LIBVERSION=c:r:a" >> TODO-RELEASE
+ echo "# If the library source code has changed at all since the last update, then increment revision: c:r + 1:a." >> TODO-RELEASE
+ echo "# If any interfaces have been added, removed, or changed since the last update: c + 1:0:0." >> TODO-RELEASE
+ echo "# If any interfaces have been added since the last public release: c:r:a + 1." >> TODO-RELEASE
+ echo "# If any interfaces have been removed or changed since the last public release: c:r:0." >> TODO-RELEASE
+ echo "#library what description / commit summary line" >> TODO-RELEASE
+ git add TODO-RELEASE
+}
+
BUMPVER=`command -v bumpversion`
if [ "z$BUMPVER" = "z" ]; then
@@ -281,10 +295,9 @@
fi
set -e
+
if [ -f "TODO-RELEASE" ]; then
- grep '#' TODO-RELEASE > TODO-RELEASE.clean || true
- mv TODO-RELEASE.clean TODO-RELEASE
- git add TODO-RELEASE
+ clean_todo_release
fi
# Add missing epoch (OS#5046)
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/37563?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I38a40f7a6d71d67acf636ee9a1445db38e3bdf0d
Gerrit-Change-Number: 37563
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-iuh/+/37572?usp=email )
Change subject: Bump version: 1.5.1.11-d14f-dirty → 1.6.0
......................................................................
Bump version: 1.5.1.11-d14f-dirty → 1.6.0
Change-Id: I3d44b5aae456c90e1c5397e31fcc823fec62e6c0
---
M TODO-RELEASE
M debian/changelog
M src/Makefile.am
3 files changed, 39 insertions(+), 7 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-iuh refs/changes/72/37572/1
diff --git a/TODO-RELEASE b/TODO-RELEASE
index d0852fc..0ed7189 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -1,9 +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…
-# 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…
# 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
+#library what description / commit summary line
diff --git a/debian/changelog b/debian/changelog
index 0720fa0..7155581 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,26 @@
+osmo-iuh (1.6.0) unstable; urgency=medium
+
+ [ Vadim Yanitskiy ]
+ * build: include git-version-gen into the release tarball
+ * README.md: cosmetic: fix a typo
+
+ [ Harald Welte ]
+ * Fix license headers: Should have been AGPLv3+, not GPLv2+
+ * Add ranap_decode_rab_releaseditemies_fromlist()
+ * ranap_common: fix pointer type in ranap_decode_rab_releaseitemies_fromlist()
+ * constify {hnbap_rua}_cause_str() argument
+ * hnbap_common: Make error message more verbose (which type failed)
+ * ranap_common: Implement support for missing procedures
+
+ [ Oliver Smith ]
+ * contrib: remove rpm spec file
+
+ [ Neels Hofmeyr ]
+ * fix memleak: free after aper_decode() also on error
+ * ranap_cn_rx_co(): do not ranap_cn_rx_co_free() on error
+
+ -- Oliver Smith <osmith(a)sysmocom.de> Wed, 24 Jul 2024 12:42:56 +0200
+
osmo-iuh (1.5.1) unstable; urgency=medium
[ Pau Espin Pedrol ]
diff --git a/src/Makefile.am b/src/Makefile.am
index 44c4c43..a4da5fe 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -61,9 +61,9 @@
# build the shared RANAP + SABP library
#
-HNBAP_LIBVERSION=1:0:1
-RANAP_LIBVERSION=8:1:1
-RUA_LIBVERSION=1:1:1
+HNBAP_LIBVERSION=1:1:1
+RANAP_LIBVERSION=9:0:2
+RUA_LIBVERSION=1:2:1
SABP_LIBVERSION=2:0:1
lib_LTLIBRARIES = libosmo-hnbap.la libosmo-ranap.la libosmo-rua.la libosmo-sabp.la
libosmo_hnbap_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(HNBAP_LIBVERSION) -no-undefined
--
To view, visit https://gerrit.osmocom.org/c/osmo-iuh/+/37572?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-Change-Id: I3d44b5aae456c90e1c5397e31fcc823fec62e6c0
Gerrit-Change-Number: 37572
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange
Attention is currently required from: osmith.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-e1d/+/37567?usp=email )
Change subject: Bump version: 0.6.0.24-f030 → 0.7.0
......................................................................
Patch Set 1: Code-Review-1
(1 comment)
Patchset:
PS1:
You are missing updating new LIBOSMOCORE_ and other depnedency PKGCONFIG to new LIBOSMOCORE version being released together with this project.
This way we make sure people use the same release for everything at the same time, and avoid running with older dependencies which were not tested against.
--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/37567?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: Id8f76ae993c2755e8c1334433f1c1ae2dc1fe1fb
Gerrit-Change-Number: 37567
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 24 Jul 2024 10:31:40 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment