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/.
Harald Welte gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/4456
Tag/Release Version 0.1.0
Short changelog:
* Add Doxygen documentation
* SCTP support in stream.c
* new udp-test-client and udp-test-server programs
* better / more verbose error handling in examples
* new osmo_dgram_tx_set_local_{addr,port}() functions
* use IPA definitions from libosmogsm, rather than repeating them
* encode RTP header M field of RFC3550/4867 in OSMUX header
* new osmo_stream_srv_link_set_nodelay()
* new osmo_stream_srv_link_set_proto()
* new osmo_stream_cli_set_nodelay()
* new osmo_stream_cli_set_proto()
* new osmo_stream_cli_set_local_addr()
* new osmo_stream_cli_set_local_port()
* new osmo_stream_cli_reconnect()
* new osmo_stream_cli_open2() with reconnect argument
* more vrebose osmux_snprintf()
* remove mistaken reference to AGPL in rs232.c
* fix memory leak in osmo_stream_srv_link_set_addr()
* add osmo-pcap-test for SLL and Ethernet
* extend osmux-test
Change-Id: Ibf75fcd6643351ce3946faa155ae1db8c33a5e35
---
M debian/changelog
M debian/control
R debian/libosmonetif4.install
M src/Makefile.am
4 files changed, 11 insertions(+), 7 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/56/4456/1
diff --git a/debian/changelog b/debian/changelog
index 6cd3378..003b027 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,12 @@
-libosmo-netif (0.0.7) UNRELEASED; urgency=medium
+libosmo-netif (0.1.0) unstable; urgency=medium
+ [ Holger Hans Peter Freyther ]
* Move forward toward a new release.
- -- Holger Hans Peter Freyther <holger at moiji-mobile.com> Tue, 24 May 2016 23:06:33 +0200
+ [ Harald Welte ]
+ * Update to upstream 0.1.0
+
+ -- Holger Hans Peter Freyther <holger at moiji-mobile.com> Fri, 27 Oct 2017 20:00:39 +0200
libosmo-netif (0.0.6) unstable; urgency=medium
diff --git a/debian/control b/debian/control
index 11ae7d0..9e0f26f 100644
--- a/debian/control
+++ b/debian/control
@@ -21,7 +21,7 @@
Vcs-Git: git://git.osmocom.org/libosmo-netif.git
Homepage: https://projects.osmocom.org/projects/libosmo-netif
-Package: libosmonetif3
+Package: libosmonetif4
Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -39,7 +39,7 @@
${misc:Depends},
libosmocore-dev,
libosmocore,
- libosmonetif3 (= ${binary:Version})
+ libosmonetif4 (= ${binary:Version})
Multi-Arch: same
Description: Development headers for Osmocom network interface
The libosmo-netif library is one of the libraries needed by the
@@ -53,7 +53,7 @@
Architecture: all
Section: doc
Depends: ${misc:Depends},
- libosmonetif3,
+ libosmonetif4,
libjs-jquery
Description: Documentation for the Osmo network interface library
The libosmo-netif library is one of the libraries needed by the
@@ -66,7 +66,7 @@
Section: debug
Architecture: any
Priority: extra
-Depends: libosmonetif3 (= ${binary:Version}), ${misc:Depends}
+Depends: libosmonetif4 (= ${binary:Version}), ${misc:Depends}
Multi-Arch: same
Description: Debug symbols for Osmocom network interface library
The libosmo-netif library is one of the libraries needed by the
diff --git a/debian/libosmonetif3.install b/debian/libosmonetif4.install
similarity index 100%
rename from debian/libosmonetif3.install
rename to debian/libosmonetif4.install
diff --git a/src/Makefile.am b/src/Makefile.am
index 4bc481e..e647090 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=3:0:0
+LIBVERSION=4:0:0
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
--
To view, visit https://gerrit.osmocom.org/4456
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibf75fcd6643351ce3946faa155ae1db8c33a5e35
Gerrit-PatchSet: 1
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>