diff --git a/CMakeLists.txt b/CMakeLists.txt index 915bbabb60..941640fa6a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ cmake_minimum_required(VERSION 2.8) -set(PACKAGE_VERSION 2.0.1) +set(PACKAGE_VERSION 2.0.2) ############################################################################# ## Options diff --git a/NEWS.md b/NEWS.md index 9c8a3d7746..bff43e2ee2 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,6 +4,8 @@ Changes in 2.0.2 (2014-12-14) - Distribute config.h.cmakein in the release tarball (fixes #14). - Distribute and install README.md and NEWS.md. - Miscellanneous distribution improvements. +- Bump shared lib name generated by autotools to libilbc.so.2.0.2 to be + consistent with the CMake toolchain. Changes in 2.0.1 (2014-12-11) ----------------------------- diff --git a/configure.ac b/configure.ac index 6c608208cb..3f0f95efa2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_INIT([libilbc], [2.0.1], [iLBC Codec]) +AC_INIT([libilbc], [2.0.2], [iLBC Codec]) AC_CONFIG_AUX_DIR(.) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([tar-ustar dist-bzip2 foreign subdir-objects]) @@ -30,7 +30,7 @@ AC_SUBST(PTHREAD_LIBS) # soname version to use # goes by ‘current[:revision[:age]]’ with the soname ending up as # current.age.revision. -LIBILBC_VERSION=2:0:0 +LIBILBC_VERSION=2:2:0 AC_SUBST(LIBILBC_VERSION) AC_CONFIG_HEADERS([config.h])