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/.
Harald Welte gerrit-no-reply at lists.osmocom.orgHarald Welte has submitted this change and it was merged. ( https://gerrit.osmocom.org/12644 )
Change subject: Bump version: 0.10.0.39-b723 → 1.0.0
......................................................................
Bump version: 0.10.0.39-b723 → 1.0.0
Change-Id: I9b9d9331bdd1d9cdebdef5c3e0c49a1b18972abd
---
M debian/changelog
M debian/control
R debian/libosmo-sigtran3.install
M debian/rules
M src/Makefile.am
5 files changed, 65 insertions(+), 7 deletions(-)
Approvals:
Harald Welte: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/debian/changelog b/debian/changelog
index 135d08e..06496c1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,61 @@
+libosmo-sccp (1.0.0) unstable; urgency=medium
+
+ [ Harald Welte ]
+ * Migrate from ipa_ccm_idtag_parse() to ipa_ccm_id_resp_parse()
+ * debian/rules: Don't overwrite .tarball-version
+ * Revert "Install systemd services with autotools"
+ * osmo-stp.cfg: Ensure example config is well-formed
+ * First step towards an OsmoSTP manual
+ * STP: Update vty reference XML file
+ * vty-ref: Update URI of docbook 5.0 schema
+
+ [ Pau Espin Pedrol ]
+ * sscp_scrc: Fix memleak of xua_msg when handing it to scrc_rx_mtp_xfer_ind_xua
+ * xua_rkm: Fix xua_msg memleank in handle_rkey_reg_resp
+ * Install systemd services with autotools
+ * Install systemd services with autotools
+ * debian/rules: Remove duplicated override_dh_auto_test section
+ * Install sample cfg file to /etc/osmocom
+ * debian: Document why enable-static is used in dh_auto_configure
+
+ [ Neels Hofmeyr ]
+ * ipa_asp_fsm: init: expect IPA ID ACK, not GET
+ * cosmetic: sccp_scoc.c: fix timers definition units
+ * drop inaccurate comment from osmo_ss7_vty.c
+ * vty: fix 'show asp' from within 'asp' node
+ * allow less characters for SCCP address book entries
+ * add tests/vty: VTY UI transcript testing
+ * sccp_vty: define SCCP_STR once
+ * vty: tweak two printed strings
+ * vty: install 'show cs7' for sccp addrs on _ve nodes
+ * cosmetic: allocate ss7->sccp in one common function
+ * sccp_vty: fix doc strings for show ... ssn,connections
+ * make SCCP timers configurable
+ * build: move include/{mtp,sccp} to include/osmocom/
+ * osmo-stp: add SCCP related VTY commands
+ * Importing history from osmo-gsm-manuals.git
+ * OsmoSTP: update VTY reference
+ * stp: update vty reference
+ * stp: update vty reference with added SCCP commands
+
+ [ Stefan Sperling ]
+ * skip simple-client default as/asp when saving VTY config
+ * return error code from xua_srv_conn_cb() if conn is freed
+ * fix ipa_asp_fsm down state transition
+
+ [ Max ]
+ * Make pointcode width function public
+ * Log ip:port for created SS7 server
+ * SS7: safeguard against wrong number of pointcode component
+
+ [ Oliver Smith ]
+ * build manuals moved here from osmo-gsm-manuals.git
+ * Fix DISTCHECK_CONFIGURE_FLAGS override
+ * contrib/jenkins.sh: build and publish manuals
+ * contrib: fix makedistcheck with disabled systemd
+
+ -- Harald Welte <laforge at gnumonks.org> Sun, 20 Jan 2019 11:33:22 +0100
+
libosmo-sccp (0.10.0) unstable; urgency=medium
[ Harald Welte ]
diff --git a/debian/control b/debian/control
index 8680bba..44d0fc6 100644
--- a/debian/control
+++ b/debian/control
@@ -33,7 +33,7 @@
.
This package contains the development files for the library.
-Package: libosmo-sigtran0
+Package: libosmo-sigtran3
Section: libs
Architecture: any
Multi-Arch: same
@@ -52,7 +52,7 @@
Architecture: any
Section: debug
Multi-Arch: same
-Depends: libosmo-sigtran0 (= ${binary:Version}),
+Depends: libosmo-sigtran3 (= ${binary:Version}),
${misc:Depends}
Description: Documentation for the Osmocom SIGTRAN library
libosmo-sigtran is a shared library containing SS7/SIGTRAN related functionality,
@@ -67,7 +67,7 @@
Architecture: all
Section: doc
Depends: ${misc:Depends},
- libosmo-sigtran0 (= ${binary:Version}),
+ libosmo-sigtran3 (= ${binary:Version}),
libjs-jquery
Description: Documentation for the Osmocom SIGTRAN library
libosmo-sigtran is a shared library containing SS7/SIGTRAN related functionality,
@@ -82,7 +82,7 @@
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
- libosmo-sigtran0 (= ${binary:Version}),
+ libosmo-sigtran3 (= ${binary:Version}),
libosmocore-dev,
libosmo-netif-dev
Description: Development headers for the Osmocom SIGTRAN library
@@ -97,7 +97,7 @@
Architecture: any
Multi-Arch: same
Section: net
-Depends: libosmo-sigtran0,
+Depends: libosmo-sigtran3,
${shlibs:Depends},
${misc:Depends}
Description: Osmocom SIGTRAN STP (Signaling Transfer Point)
diff --git a/debian/libosmo-sigtran0.install b/debian/libosmo-sigtran3.install
similarity index 100%
rename from debian/libosmo-sigtran0.install
rename to debian/libosmo-sigtran3.install
diff --git a/debian/rules b/debian/rules
index 0bf9673..f443aee 100755
--- a/debian/rules
+++ b/debian/rules
@@ -12,7 +12,7 @@
dh $@ --with autoreconf
override_dh_strip:
- dh_strip -plibosmo-sigtran0 --dbg-package=libosmo-sigtran-dbg
+ dh_strip -plibosmo-sigtran3 --dbg-package=libosmo-sigtran-dbg
dh_strip -posmo-stp --dbg-package=osmo-stp-dbg
override_dh_install:
diff --git a/src/Makefile.am b/src/Makefile.am
index 9cea642..56567d6 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -25,7 +25,7 @@
# This is _NOT_ the library release version, it's an API version.
# Please read Chapter 6 "Library interface versions" of the libtool
# documentation before making any modification
-LIBVERSION=2:0:2
+LIBVERSION=3:0:0
libosmo_sigtran_la_SOURCES = sccp_sap.c sua.c m3ua.c xua_msg.c sccp_helpers.c \
sccp2sua.c sccp_scrc.c sccp_sclc.c sccp_scoc.c \
--
To view, visit https://gerrit.osmocom.org/12644
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I9b9d9331bdd1d9cdebdef5c3e0c49a1b18972abd
Gerrit-Change-Number: 12644
Gerrit-PatchSet: 2
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder (1000002)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190120/6a0e3ca8/attachment.htm>