Bump version: 1.5.0.20-e9cc-dirty → 1.6.0

Change-Id: Ibe4efb64b8de506a007559e2fcf13cc9dc0d9d60
This commit is contained in:
Pau Espin 2022-06-28 18:22:14 +02:00
parent e9cc5c9376
commit 1032df2d88
6 changed files with 46 additions and 13 deletions

View File

@ -7,4 +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
libosmo-netif >1.1.0 use of netif/sctp.h

View File

@ -36,10 +36,10 @@ if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
fi
PKG_PROG_PKG_CONFIG([0.20])
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0)
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.5.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.5.0)
PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.1.0)
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)
old_LIBS=$LIBS
AC_SEARCH_LIBS([sctp_recvmsg], [sctp], [

View File

@ -34,10 +34,10 @@ BuildRequires: pkgconfig >= 0.20
BuildRequires: systemd-rpm-macros
%endif
BuildRequires: xz
BuildRequires: pkgconfig(libosmo-netif) >= 1.1.0
BuildRequires: pkgconfig(libosmocore) >= 1.5.0
BuildRequires: pkgconfig(libosmogsm) >= 1.5.0
BuildRequires: pkgconfig(libosmovty) >= 1.5.0
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
%{?systemd_requires}
%description

34
debian/changelog vendored
View File

@ -1,3 +1,37 @@
libosmo-sccp (1.6.0) unstable; urgency=medium
[ Pau Espin Pedrol ]
* ss7: Use sctp value_string from libosmo-netif
* xua_default_lm_fsm.c: Fix typo in comment
* xua_asp_fsm: Fix gcc false positive warning
* Add ss7 instances to osmo_ss7_instances in creation order
[ Oliver Smith ]
* treewide: remove FSF address
* src/sccp_scmg: fix typo
* osmo_ss7_instance_destroy: use for_each_entry_safe
* include/osmocom/sigtran/sccp_sap.h: cosmetic fixes
* osmo_ss7_vty: add osmo_sccp_addr_by_name_local
[ Philipp Maier ]
* sccp_user: do not force the role ASP when configured differently
[ Harald Welte ]
* sccp_demo_user: Add command line argument to specify protocol (m3ua/ipa)
* sccp_demo_user: Add 'show stats' to VTY
* sccp_demo_user: make sure the command-line specified point codes are used
* sccp_demo_user: Allow user to specify logmask on command line
* sccp_demo_user: enable stats / rate_counter timers
* M3UA/SUA: Implement handling of SCON (signaling congestion)
* [cosmetic] sccp_scoc.c: fix comments about corresponding SCCP msg types
* [cosmetic] sccp_scoc: Fix typo in comment
* update git URLs (git -> https; gitea)
[ Vadim Yanitskiy ]
* tests: use 'check_PROGRAMS' instead of 'noinst_PROGRAMS'
-- Pau Espin Pedrol <pespin@sysmocom.de> Tue, 28 Jun 2022 18:22:13 +0200
libosmo-sccp (1.5.0) unstable; urgency=medium
[ Harald Welte ]

6
debian/control vendored
View File

@ -5,7 +5,7 @@ Priority: optional
Build-Depends: debhelper (>= 9),
autotools-dev,
pkg-config,
libosmocore-dev (>= 1.5.0),
libosmocore-dev (>= 1.7.0),
autoconf,
automake,
libtool,
@ -13,9 +13,9 @@ Build-Depends: debhelper (>= 9),
git,
doxygen,
libdpkg-perl,
libosmo-netif-dev (>= 1.1.0),
libosmo-netif-dev (>= 1.2.0),
libsctp-dev,
osmo-gsm-manuals-dev (>= 1.1.0)
osmo-gsm-manuals-dev (>= 1.3.0)
Standards-Version: 3.9.7
Vcs-Git: 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.
# Please read Chapter 6 "Library interface versions" of the libtool
# documentation before making any modification
LIBVERSION=7:0:0
LIBVERSION=7:1: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 \