Bump version: 0.5.1.20-de57 → 0.6.0

Change-Id: I417065deb06ac7e8b3b8468b88cc803a41098c2d
diff --git a/configure.ac b/configure.ac
index 54d79f8..ba33ed9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -59,9 +59,9 @@
 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))
diff --git a/debian/changelog b/debian/changelog
index 8645b47..6a6882d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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 ]
diff --git a/debian/control b/debian/control
index e47fc22..24a082e 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@
                dh-autoreconf,
                libdpkg-perl,
                git,
-               libosmocore-dev (>= 0.6.4),
+               libosmocore-dev (>= 1.0.0),
                pkg-config,
                libortp-dev
 Standards-Version: 3.9.7
diff --git a/src/Makefile.am b/src/Makefile.am
index eb2b572..9566617 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -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)