Change in osmo-iuh[master]: Bump version: 0.5.0.23-11a1 → 0.6.0

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Fri Jan 3 17:59:18 UTC 2020


pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-iuh/+/16717 )

Change subject: Bump version: 0.5.0.23-11a1 → 0.6.0
......................................................................

Bump version: 0.5.0.23-11a1 → 0.6.0

Change-Id: I5f42c0ad1a930004415f097d984e1fd1b2d277e6
---
M TODO-RELEASE
M debian/changelog
M debian/control
R debian/libosmo-ranap3.install
M debian/rules
M src/Makefile.am
6 files changed, 44 insertions(+), 8 deletions(-)

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



diff --git a/TODO-RELEASE b/TODO-RELEASE
index b967e56..d0852fc 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
-libranap    iu_client.h struct ranap_ue_conn_ctx: add field notification
-libranap    iu_client.h struct ranap_ue_conn_ctx: add field release_timeout
-libranap    iu_client.h struct ranap_ue_conn_ctx: add field free_on_release
diff --git a/debian/changelog b/debian/changelog
index cdf7a94..f59c49e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,42 @@
+osmo-iuh (0.6.0) unstable; urgency=medium
+
+  [ Vadim Yanitskiy ]
+  * hnbgw_vty.c: fix: properly pass pointer to g_hnb_gw
+  * osmo-hnbgw: make sure osmo_ss7_init() executed successfully
+
+  [ Alexander Couzens ]
+  * iu_client: sccp_sap_up: set rc early
+  * iu_client: ensure UE is not NULL on CO primitives
+  * iu_client: sccp_sap_up: don't decode empty disconnect indications
+  * iu_client: introduce ranap_iu_free_ue() to free the UE connections
+  * iu_client: emit RANAP_IU_EVENT_LINK_INVALIDATED on SCCP disconnect indication
+  * iu_client: introduce a guard around global_iu_event_cb
+  * iu_client: allow to control the notifications
+  * iu_client: introduce ranap_iu_tx_release_free()
+  * iu_client: introduce UE field free_on_release
+  * iu_client: pass return value of osmo_sccp_user_sap_down() towards the caller
+  * iu_client: ranap_iu_tx_release() change default cause code to Success
+
+  [ Pau Espin Pedrol ]
+  * hnbgw: Add libosmoctrl's VTY CTRL command initialization
+  * debian/rules: Fix dbg pacakges
+  * debian: Split libosmo-sabp from libosmo-ranap package
+
+  [ Harald Welte ]
+  * asn1enum.pl: Make compatible with modern perl
+  * sabp: Initial import of SABP ASN.1 from 3GPP TS 25.419 V11.1.0 (2013-03)
+  * sabp: fixup SABP ASN.1 to avoid IOC (which are not supported by our toolchain)
+  * sabp: Add Procedure Codes and IEI constants to CommonDataTypes
+  * sabp: Generate C/H files for SABP; create libosmo-sabp
+  * Initial minimal OsmoHNBGW user manual
+  * exit(2) on unsupported positional arguments on command line
+
+  [ Oliver Smith ]
+  * gitignore: add gen_sabp.stamp
+  * debian, asn1tostruct.py: switch to python3
+
+ -- Pau Espin Pedrol <pespin at sysmocom.de>  Fri, 03 Jan 2020 17:04:15 +0100
+
 osmo-iuh (0.5.0) unstable; urgency=medium
 
   [ Neels Hofmeyr ]
diff --git a/debian/control b/debian/control
index c6e0714..4d66d18 100644
--- a/debian/control
+++ b/debian/control
@@ -36,7 +36,7 @@
 Depends: osmo-hnbgw (= ${binary:Version}), ${misc:Depends}
 Description: osmocom Home Node B Gateway
 
-Package: libosmo-ranap2
+Package: libosmo-ranap3
 Section: libs
 Architecture: any
 Multi-Arch: same
@@ -48,14 +48,14 @@
 Section: debug
 Architecture: any
 Multi-Arch: same
-Depends: libosmo-ranap2 (= ${binary:Version}), ${misc:Depends}
+Depends: libosmo-ranap3 (= ${binary:Version}), ${misc:Depends}
 Description: Osmocom code for the Iuh interface (HNBAP, RUA, RANAP)
 
 Package: libosmo-ranap-dev
 Section: libdevel
 Architecture: any
 Multi-Arch: same
-Depends: libosmo-ranap2 (= ${binary:Version}), ${misc:Depends}
+Depends: libosmo-ranap3 (= ${binary:Version}), ${misc:Depends}
 Description: Osmocom code for the Iuh interface (HNBAP, RUA, RANAP)
 
 Package: libosmo-sabp0
diff --git a/debian/libosmo-ranap2.install b/debian/libosmo-ranap3.install
similarity index 100%
rename from debian/libosmo-ranap2.install
rename to debian/libosmo-ranap3.install
diff --git a/debian/rules b/debian/rules
index e821a57..c3bdf50 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,7 +10,7 @@
 
 # See https://www.debian.org/doc/manuals/developers-reference/best-pkging-practices.html#bpp-dbg
 override_dh_strip:
-	dh_strip -plibosmo-ranap2 --dbg-package=libosmo-ranap-dbg
+	dh_strip -plibosmo-ranap3 --dbg-package=libosmo-ranap-dbg
 	dh_strip -plibosmo-sabp0 --dbg-package=libosmo-sabp-dbg
 	dh_strip -posmo-hnbgw --dbg-package=osmo-hnbgw-dbg
 
diff --git a/src/Makefile.am b/src/Makefile.am
index b1f8153..1c3a64a 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -61,7 +61,7 @@
 
 # build the shared RANAP + SABP library
 #
-RANAP_LIBVERSION=2:2:0
+RANAP_LIBVERSION=3:0:0
 SABP_LIBVERSION=0:0:0
 lib_LTLIBRARIES = libosmo-ranap.la libosmo-sabp.la
 libosmo_ranap_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(RANAP_LIBVERSION)

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-iuh/+/16717
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-Change-Id: I5f42c0ad1a930004415f097d984e1fd1b2d277e6
Gerrit-Change-Number: 16717
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200103/2e0bec74/attachment.htm>


More information about the gerrit-log mailing list