Bump version: 1.1.0.14-d1ab-dirty → 1.2.0

Change-Id: I5809e5c85af66db6174a182a936891fa6e1104c1
This commit is contained in:
Pau Espin 2022-06-28 18:09:49 +02:00
parent d1ab58514e
commit bea94d8edf
7 changed files with 34 additions and 10 deletions

View File

@ -7,5 +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
sctp.h new APIs
prim.h new data type, APIs

View File

@ -89,8 +89,8 @@ AC_SUBST(SYMBOL_VISIBILITY)
dnl Generate the output
AM_CONFIG_HEADER(config.h)
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.5.0)
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.7.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.7.0)
AC_ARG_ENABLE([lapd_examples],
[AS_HELP_STRING(
@ -99,7 +99,7 @@ AC_ARG_ENABLE([lapd_examples],
)],
[lapd_examples=$enableval], [lapd_examples="no"])
AS_IF([test "x$lapd_examples" = "xyes"], [
PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.1.0)
PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.3.0)
AC_DEFINE([ENABLE_LAPD], [1], [Enable LAPD examples])
])
AM_CONDITIONAL(ENABLE_LAPD, test "x$lapd_examples" = "xyes")

View File

@ -24,8 +24,8 @@ BuildRequires: automake
BuildRequires: libtool >= 2
BuildRequires: lksctp-tools-devel
BuildRequires: pkgconfig >= 0.20
BuildRequires: pkgconfig(libosmocore) >= 1.5.0
BuildRequires: pkgconfig(libosmogsm) >= 1.5.0
BuildRequires: pkgconfig(libosmocore) >= 1.7.0
BuildRequires: pkgconfig(libosmogsm) >= 1.7.0
%description
Network interface demuxer library for OsmoCom projects.

26
debian/changelog vendored
View File

@ -1,3 +1,29 @@
libosmo-netif (1.2.0) unstable; urgency=medium
[ Pau Espin Pedrol ]
* Introduce sctp.h to provide SCTP related functionalities
* stream: Factor out sctp_recvmg long code chunk
* stream: Add support for AF_UNIX sockets
* Introduce osmo_prim_srv APIs
* prim: Add internal CTL SAPI to negotiate SAP versions
* prim: return last error code
* amr: Fix FormatType from parsing BWE AMR header
* amr: Fix length check in bwe<->iuup converters
[ Alexander Couzens ]
* amr: don't rely on pad bits to be zero
* export osmo_amr_bits
* amr: Introduce APIs to convert BE to IuUP/IuFP format
[ Philipp Maier ]
* amr: cosmetic: fix grammer in comment
* amr_test: increase test coverage for oa / bwe conversation
[ Harald Welte ]
* update git URLs (git -> https; gitea)
-- Pau Espin Pedrol <pespin@sysmocom.de> Tue, 28 Jun 2022 18:09:49 +0200
libosmo-netif (1.1.0) unstable; urgency=medium
[ Vadim Yanitskiy ]

2
debian/control vendored
View File

@ -11,7 +11,7 @@ Build-Depends: debhelper (>= 9),
libdpkg-perl,
git,
doxygen,
libosmocore-dev (>= 1.5.0),
libosmocore-dev (>= 1.7.0),
pkg-config,
libpcap0.8-dev,
libsctp-dev

View File

@ -1,6 +1,6 @@
# 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=9:1:1
LIBVERSION=10:0:2
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)

View File

@ -16,7 +16,7 @@ PKG_PROG_PKG_CONFIG([0.20])
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0)
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.7.0)
AC_PROG_CC
AC_DISABLE_STATIC