Bump version: 1.6.0.20-8b67-dirty → 1.7.0

Change-Id: I431dc58d5c4adfcb2c4ff19a95b31853618034b5
This commit is contained in:
Pau Espin 2023-02-07 14:37:23 +01:00
parent 8b671b073f
commit dc9713a672
5 changed files with 44 additions and 12 deletions

View File

@ -36,10 +36,10 @@ if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
fi fi
PKG_PROG_PKG_CONFIG([0.20]) PKG_PROG_PKG_CONFIG([0.20])
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.7.0) PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.8.0)
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.7.0) PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.8.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.7.0) PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.8.0)
PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.2.0) PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.3.0)
old_LIBS=$LIBS old_LIBS=$LIBS
AC_SEARCH_LIBS([sctp_recvmsg], [sctp], [ AC_SEARCH_LIBS([sctp_recvmsg], [sctp], [

View File

@ -34,10 +34,10 @@ BuildRequires: pkgconfig >= 0.20
BuildRequires: systemd-rpm-macros BuildRequires: systemd-rpm-macros
%endif %endif
BuildRequires: xz BuildRequires: xz
BuildRequires: pkgconfig(libosmo-netif) >= 1.2.0 BuildRequires: pkgconfig(libosmo-netif) >= 1.3.0
BuildRequires: pkgconfig(libosmocore) >= 1.7.0 BuildRequires: pkgconfig(libosmocore) >= 1.8.0
BuildRequires: pkgconfig(libosmogsm) >= 1.7.0 BuildRequires: pkgconfig(libosmogsm) >= 1.8.0
BuildRequires: pkgconfig(libosmovty) >= 1.7.0 BuildRequires: pkgconfig(libosmovty) >= 1.8.0
%{?systemd_requires} %{?systemd_requires}
%description %description

32
debian/changelog vendored
View File

@ -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 <pespin@sysmocom.de> Tue, 07 Feb 2023 14:37:23 +0100
libosmo-sccp (1.6.0) unstable; urgency=medium libosmo-sccp (1.6.0) unstable; urgency=medium
[ Pau Espin Pedrol ] [ Pau Espin Pedrol ]

6
debian/control vendored
View File

@ -5,7 +5,7 @@ Priority: optional
Build-Depends: debhelper (>= 9), Build-Depends: debhelper (>= 9),
autotools-dev, autotools-dev,
pkg-config, pkg-config,
libosmocore-dev (>= 1.7.0), libosmocore-dev (>= 1.8.0),
autoconf, autoconf,
automake, automake,
libtool, libtool,
@ -13,9 +13,9 @@ Build-Depends: debhelper (>= 9),
git, git,
doxygen, doxygen,
libdpkg-perl, libdpkg-perl,
libosmo-netif-dev (>= 1.2.0), libosmo-netif-dev (>= 1.3.0),
libsctp-dev, libsctp-dev,
osmo-gsm-manuals-dev (>= 1.3.0) osmo-gsm-manuals-dev (>= 1.4.0)
Standards-Version: 3.9.7 Standards-Version: 3.9.7
Vcs-Git: https://gitea.osmocom.org/osmocom/libosmo-sccp Vcs-Git: https://gitea.osmocom.org/osmocom/libosmo-sccp
Vcs-Browser: https://gitea.osmocom.org/osmocom/libosmo-sccp Vcs-Browser: https://gitea.osmocom.org/osmocom/libosmo-sccp

View File

@ -25,7 +25,7 @@ lib_LTLIBRARIES = libosmo-sigtran.la
# This is _NOT_ the library release version, it's an API version. # This is _NOT_ the library release version, it's an API version.
# Please read Chapter 6 "Library interface versions" of the libtool # Please read Chapter 6 "Library interface versions" of the libtool
# documentation before making any modification # 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 \ 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 \ sccp2sua.c sccp_scrc.c sccp_sclc.c sccp_scoc.c \