Change in libosmo-netif[master]: Bump version: 1.0.0.14-3e65-dirty → 1.1.0

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Tue Feb 23 15:49:26 UTC 2021


pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-netif/+/23049 )

Change subject: Bump version: 1.0.0.14-3e65-dirty → 1.1.0
......................................................................

Bump version: 1.0.0.14-3e65-dirty → 1.1.0

Change-Id: I8e3be883113444251f5008c407e9f722d0dcd422
---
M TODO-RELEASE
M configure.ac
M contrib/libosmo-netif.spec.in
M debian/changelog
M debian/control
M src/Makefile.am
M tests/osmo-pcap-test/configure.ac
7 files changed, 37 insertions(+), 10 deletions(-)

Approvals:
  Jenkins Builder: Verified
  pespin: Looks good to me, approved



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 @@
 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 @@
 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 @@
 	)],
 	[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:  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 <pespin at sysmocom.de>  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 @@
                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 @@
 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

-- 
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/23049
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: I8e3be883113444251f5008c407e9f722d0dcd422
Gerrit-Change-Number: 23049
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210223/9acb86c9/attachment.htm>


More information about the gerrit-log mailing list