From 5967fa00580f07ddb428df0558e4d49aa1b7a7d1 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 23 Feb 2021 16:47:37 +0100 Subject: =?UTF-8?q?Bump=20version:=201.0.0.14-3e65-dirty=20=E2=86=92=201.1?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8e3be883113444251f5008c407e9f722d0dcd422 --- TODO-RELEASE | 1 - configure.ac | 8 ++++---- contrib/libosmo-netif.spec.in | 4 ++-- debian/changelog | 28 ++++++++++++++++++++++++++++ debian/control | 2 +- src/Makefile.am | 2 +- tests/osmo-pcap-test/configure.ac | 2 +- 7 files changed, 37 insertions(+), 10 deletions(-) diff --git a/TODO-RELEASE b/TODO-RELEASE index c89dec9..d0852fc 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 ipv6 Depends on libosmocore > 1.4.0 for IPv6 osmo_sock_inti2_multiaddr AF_UNSPEC (IPv6) support. diff --git a/configure.ac b/configure.ac index 1b2a459..31b7181 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PROG_INSTALL LT_INIT AC_PROG_LIBTOOL -dnl patching ${archive_cmds} to affect generation of file "libtool" to fix linking with clang +dnl patching ${archive_cmds} to affect generation of file "libtool" to fix linking with clang AS_CASE(["$LD"],[*clang*], [AS_CASE(["${host_os}"], [*linux*],[archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'])]) @@ -89,8 +89,8 @@ AC_SUBST(SYMBOL_VISIBILITY) dnl Generate the output AM_CONFIG_HEADER(config.h) -PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.3.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.3.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.5.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 >= 0.6.0) + PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.1.0) AC_DEFINE([ENABLE_LAPD], [1], [Enable LAPD examples]) ]) AM_CONDITIONAL(ENABLE_LAPD, test "x$lapd_examples" = "xyes") diff --git a/contrib/libosmo-netif.spec.in b/contrib/libosmo-netif.spec.in index 95690a7..4b25378 100644 --- a/contrib/libosmo-netif.spec.in +++ b/contrib/libosmo-netif.spec.in @@ -24,8 +24,8 @@ BuildRequires: automake BuildRequires: libtool >= 2 BuildRequires: lksctp-tools-devel BuildRequires: pkgconfig >= 0.20 -BuildRequires: pkgconfig(libosmocore) >= 1.0.0 -BuildRequires: pkgconfig(libosmogsm) >= 1.0.0 +BuildRequires: pkgconfig(libosmocore) >= 1.5.0 +BuildRequires: pkgconfig(libosmogsm) >= 1.5.0 %description Network interface demuxer library for OsmoCom projects. diff --git a/debian/changelog b/debian/changelog index 1aa3ea1..eaa5dda 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,31 @@ +libosmo-netif (1.1.0) unstable; urgency=medium + + [ Vadim Yanitskiy ] + * debian/control: change maintainer to the Osmocom team / mailing list + * stream: add missing Doxygen \return statements to non-void functions + + [ Pau Espin Pedrol ] + * stream: Support creating sockets with IPv6 addresses + * stream: Fix log of IPv6 during accept() + * contrib/jenkins: Enable parallel make in make distcheck + * tests: Explicitly drop category from log + * gitignore: Ignore autfoo *~ churn + * tests: Replace deprecated API log_set_print_filename + + [ Daniel Willmann ] + * examples: Use osmo_stream_*_set_nodelay in ipa examples + + [ Harald Welte ] + * Use osmo_fd_setup() wherever applicable + * cosmetic: Fix whitespace (use tab instead of 8x space) + * migrate to osmo_fd_{read,write}_{enable,disable}() + * Don't depend on libosmo-abis (by default) + + [ Oliver Smith ] + * configure.ac: set -std=gnu11 + + -- Pau Espin Pedrol Tue, 23 Feb 2021 16:47:37 +0100 + libosmo-netif (1.0.0) unstable; urgency=medium [ Neels Hofmeyr ] diff --git a/debian/control b/debian/control index 8b76089..e4d0f74 100644 --- a/debian/control +++ b/debian/control @@ -11,7 +11,7 @@ Build-Depends: debhelper (>= 9), libdpkg-perl, git, doxygen, - libosmocore-dev (>= 1.3.0), + libosmocore-dev (>= 1.5.0), pkg-config, libpcap0.8-dev, libsctp-dev diff --git a/src/Makefile.am b/src/Makefile.am index 64fd1d4..7e71c71 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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:0:1 +LIBVERSION=9:1:1 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir) AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS) diff --git a/tests/osmo-pcap-test/configure.ac b/tests/osmo-pcap-test/configure.ac index 47fbfe2..7cb31b0 100644 --- a/tests/osmo-pcap-test/configure.ac +++ b/tests/osmo-pcap-test/configure.ac @@ -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 >= 0.3.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0) AC_PROG_CC AC_DISABLE_STATIC -- cgit v1.2.3