Bump version: 0.5.0.2-6563-dirty → 0.6.0

Change-Id: I3af3b7aaff5c6dc3ac94e942191e27af4bf5392a
This commit is contained in:
Pau Espin 2019-08-07 20:59:51 +02:00
parent 6563cf3399
commit 592057bb33
5 changed files with 17 additions and 9 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
libosmo-netif Add new field to struct osmux_out_handle Breaks ABI with older versions
libosmo-netif Add new API osmux_xfrm_output_init2 Deprecates old osmux_xfrm_output_init

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
libosmo-netif (0.6.0) unstable; urgency=medium
[ Pau Espin Pedrol ]
* osmux: Extend osmux_out_handle and add new API to set rtp payload_type
[ Oliver Smith ]
* contrib/jenkins.sh: run "make maintainer-clean"
-- Pau Espin Pedrol <pespin@sysmocom.de> Wed, 07 Aug 2019 20:59:51 +0200
libosmo-netif (0.5.0) unstable; urgency=medium
[ Max ]

12
debian/control vendored
View File

@ -11,8 +11,8 @@ Build-Depends: debhelper (>= 9),
libdpkg-perl,
git,
doxygen,
libosmocore-dev,
libosmo-abis-dev,
libosmocore-dev (>= 1.0.0),
libosmo-abis-dev (>= 0.6.0),
pkg-config,
libpcap0.8-dev,
libsctp-dev,
@ -22,7 +22,7 @@ Vcs-Browser: http://git.osmocom.org/libosmo-netif/
Vcs-Git: git://git.osmocom.org/libosmo-netif.git
Homepage: https://projects.osmocom.org/projects/libosmo-netif
Package: libosmonetif6
Package: libosmonetif8
Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
@ -39,7 +39,7 @@ Architecture: any
Depends: ${misc:Depends},
libosmocore-dev,
libosmocore,
libosmonetif6 (= ${binary:Version})
libosmonetif8 (= ${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 @@ Package: libosmo-netif-doc
Architecture: all
Section: doc
Depends: ${misc:Depends},
libosmonetif6,
libosmonetif8,
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 @@ Package: libosmo-netif-dbg
Section: debug
Architecture: any
Priority: extra
Depends: libosmonetif6 (= ${binary:Version}), ${misc:Depends}
Depends: libosmonetif8 (= ${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

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=7:0:1
LIBVERSION=8: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)