diff --git a/TODO-RELEASE b/TODO-RELEASE index 9e75c9ac..d0852fc9 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -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 diff --git a/configure.ac b/configure.ac index 92325d7a..fe9f6148 100644 --- a/configure.ac +++ b/configure.ac @@ -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], [ diff --git a/contrib/libosmo-sccp.spec.in b/contrib/libosmo-sccp.spec.in index 133d4a99..246a548e 100644 --- a/contrib/libosmo-sccp.spec.in +++ b/contrib/libosmo-sccp.spec.in @@ -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 diff --git a/debian/changelog b/debian/changelog index a2500b32..632acf27 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Tue, 28 Jun 2022 18:22:13 +0200 + libosmo-sccp (1.5.0) unstable; urgency=medium [ Harald Welte ] diff --git a/debian/control b/debian/control index 5885de9d..e79c3180 100644 --- a/debian/control +++ b/debian/control @@ -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 diff --git a/src/Makefile.am b/src/Makefile.am index e2273e15..a7c12fe6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 \