Bump version: 0.5.1.20-de57 → 0.6.0

Change-Id: I417065deb06ac7e8b3b8468b88cc803a41098c2d
This commit is contained in:
Harald Welte 2019-01-19 22:20:47 +01:00
parent 961776a2f9
commit 176a1fbab6
4 changed files with 38 additions and 6 deletions

View File

@ -59,9 +59,9 @@ AC_SUBST(SYMBOL_VISIBILITY)
dnl Generate the output
AM_CONFIG_HEADER(config.h)
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.12.0)
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.12.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.12.0)
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.0.0)
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.0.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.0.0)
PKG_CHECK_MODULES(ORTP, ortp >= 0.22.0)
AC_CHECK_HEADERS(dahdi/user.h,,AC_MSG_WARN(DAHDI input driver will not be built))

32
debian/changelog vendored
View File

@ -1,3 +1,35 @@
libosmo-abis (0.6.0) unstable; urgency=medium
[ Neels Hofmeyr ]
* fix strncpy bugs in ipaccess.c, ipa_proxy.c
* ipa: don't crash on missing IPA ID GET message
[ Harald Welte ]
* Migrate from ipa_ccm_idtag_parse to ipa_ccm_id_resp_parse()
* debian/rules: Don't overwrite .tarball-version
[ Pau Espin Pedrol ]
* ipaccess: Use osmo_fd_setup to set up callbacks
* ipaccess_rcvmsg: Fix bug introduced in previous commit
* ipa: Simplify code in ipa_client_read
* ipa: Simplify code in ipa_server_conn_read
* ipa: Allow signalling fd destroyed in ipa_client_read
* ipa: Allow signalling fd destroyed in ipa_server_conn_read
* ipaccess: Return -EBADF when closing socket in ipaccess_bts_read_cb
* ipaccess: Allow passing return code in e1inp_line_ops->sign_link()
* debian: Fix libosmoabis soname package version
* debian: Conflict libosmoabis6 with libosmoabis5
* ipacces: Log correct trx_nr during IPA GET
* ipaccess: Simplify handling of ipaccess e1line ts
* e1_input.h: Set correct type for input_signal_data->link_type
* osmo_ortp: Log domain and fix strings without endl char
[ Stefan Sperling ]
* Properly deal with sockaddr_un socket path length limitations.
* ensure unix socket paths are NUL-terminated for bind/connect
-- Harald Welte <laforge@gnumonks.org> Sat, 19 Jan 2019 22:20:46 +0100
libosmo-abis (0.5.1) unstable; urgency=medium
[ Pau Espin Pedrol ]

2
debian/control vendored
View File

@ -10,7 +10,7 @@ Build-Depends: debhelper (>= 9),
dh-autoreconf,
libdpkg-perl,
git,
libosmocore-dev (>= 0.6.4),
libosmocore-dev (>= 1.0.0),
pkg-config,
libortp-dev
Standards-Version: 3.9.7

View File

@ -1,8 +1,8 @@
# This is _NOT_ the library release version, it's an API version.
# Please read chapter "Library interface versions" of the libtool documentation
# before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html
ABIS_LIBVERSION=6:1:0
TRAU_LIBVERSION=3:1:1
ABIS_LIBVERSION=6:2:0
TRAU_LIBVERSION=3:2:1
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)
AM_CFLAGS= -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(COVERAGE_CFLAGS)