pespin has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmo-sccp/+/31217 )


Change subject: Bump version: 1.6.0.20-8b67-dirty → 1.7.0
......................................................................

Bump version: 1.6.0.20-8b67-dirty → 1.7.0

Change-Id: I431dc58d5c4adfcb2c4ff19a95b31853618034b5
---
M configure.ac
M contrib/libosmo-sccp.spec.in
M debian/changelog
M debian/control
M src/Makefile.am
5 files changed, 44 insertions(+), 12 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmo-sccp refs/changes/17/31217/1

diff --git a/configure.ac b/configure.ac
index 98f1799..1dc7b9b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,10 +36,10 @@
 fi
 PKG_PROG_PKG_CONFIG([0.20])

-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.7.0)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.7.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.7.0)
-PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.2.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.8.0)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.8.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.8.0)
+PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.3.0)

 old_LIBS=$LIBS
 AC_SEARCH_LIBS([sctp_recvmsg], [sctp], [
diff --git a/contrib/libosmo-sccp.spec.in b/contrib/libosmo-sccp.spec.in
index 246a548..2d86436 100644
--- a/contrib/libosmo-sccp.spec.in
+++ b/contrib/libosmo-sccp.spec.in
@@ -34,10 +34,10 @@
 BuildRequires:  systemd-rpm-macros
 %endif
 BuildRequires:  xz
-BuildRequires:  pkgconfig(libosmo-netif) >= 1.2.0
-BuildRequires:  pkgconfig(libosmocore) >= 1.7.0
-BuildRequires:  pkgconfig(libosmogsm) >= 1.7.0
-BuildRequires:  pkgconfig(libosmovty) >= 1.7.0
+BuildRequires:  pkgconfig(libosmo-netif) >= 1.3.0
+BuildRequires:  pkgconfig(libosmocore) >= 1.8.0
+BuildRequires:  pkgconfig(libosmogsm) >= 1.8.0
+BuildRequires:  pkgconfig(libosmovty) >= 1.8.0
 %{?systemd_requires}

 %description
diff --git a/debian/changelog b/debian/changelog
index 632acf2..679f1c6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,35 @@
+libosmo-sccp (1.7.0) unstable; urgency=medium
+
+  [ Pau Espin Pedrol ]
+  * xua_snm: assert to guard against NULL ptr
+  * sccp: Validate local references > 0x00fffffe are not used
+
+  [ Max ]
+  * cosmetic: improve usage help of example code
+  * SCCP: enforce optional data length limits
+  * SCCP: Log more data on CR size error
+  * [cosmetic] sccp_scoc.c: constify function parameters
+  * Add basic readme for example code
+  * SIGTRAN: don't advance FSM on failed connection request
+  * SIGTRAN: add function to check connection existence
+  * SIGTRAN: error if attempting to send exceedingly big data
+  * SIGTRAN: add osmo_sccp_tx_disconn_data() helper
+  * examples: update vty code
+  * SIGTRAN: arrange the comments in the encoder to match the spec
+  * SIGTRAN: cache Optional Data for SCCP CR/CC/RLSD
+  * Set working directory in systemd service file
+
+  [ Harald Welte ]
+  * Add -Werror=implicit-int -Werror=int-conversion 
-Werror=old-style-definition
+  * SCOC: dump SUA header when logging "mismatching remote pc"
+  * cosmetic: fix typo in comment
+
+  [ Oliver Smith ]
+  * tests: fix old-style function definition
+  * contrib/jenkins.sh: add missing 'make check'
+
+ -- Pau Espin Pedrol <[email protected]>  Tue, 07 Feb 2023 14:37:23 +0100
+
 libosmo-sccp (1.6.0) unstable; urgency=medium

   [ Pau Espin Pedrol ]
diff --git a/debian/control b/debian/control
index e79c318..aaefe8e 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@
 Build-Depends: debhelper (>= 9),
                autotools-dev,
                pkg-config,
-               libosmocore-dev (>= 1.7.0),
+               libosmocore-dev (>= 1.8.0),
                autoconf,
                automake,
                libtool,
@@ -13,9 +13,9 @@
                git,
                doxygen,
                libdpkg-perl,
-               libosmo-netif-dev (>= 1.2.0),
+               libosmo-netif-dev (>= 1.3.0),
                libsctp-dev,
-               osmo-gsm-manuals-dev (>= 1.3.0)
+               osmo-gsm-manuals-dev (>= 1.4.0)
 Standards-Version: 3.9.7
 Vcs-Git: https://gitea.osmocom.org/osmocom/libosmo-sccp
 Vcs-Browser: https://gitea.osmocom.org/osmocom/libosmo-sccp
diff --git a/src/Makefile.am b/src/Makefile.am
index a7c12fe..78336d1 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=7:1:0
+LIBVERSION=8:0:1

 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/c/libosmo-sccp/+/31217
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Change-Id: I431dc58d5c4adfcb2c4ff19a95b31853618034b5
Gerrit-Change-Number: 31217
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>
Gerrit-MessageType: newchange

Reply via email to