diff options
author | Martin Storsjo <martin@martin.st> | 2021-04-28 15:08:28 +0300 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2021-04-28 15:34:15 +0300 |
commit | 801f67f671929311e0c9952c5f92d6e147c7b003 (patch) | |
tree | 5b7ba89017aaeeb1e2f0623cbcc9d4a68a6f62c6 | |
parent | 143b2537d97e875774f53e9e6905d689125ac8b5 (diff) | |
download | fdk-aac-801f67f671929311e0c9952c5f92d6e147c7b003.tar.gz fdk-aac-801f67f671929311e0c9952c5f92d6e147c7b003.tar.bz2 fdk-aac-801f67f671929311e0c9952c5f92d6e147c7b003.zip |
Bump the versions and add changelog entries for v2.0.2
-rw-r--r-- | CMakeLists.txt | 6 | ||||
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 11 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f768025..4db8c7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ if(POLICY CMP0091) cmake_policy(SET CMP0091 NEW) endif() -project(fdk-aac VERSION 2.0.1) +project(fdk-aac VERSION 2.0.2) # Includes @@ -487,10 +487,10 @@ target_link_libraries(fdk-aac PRIVATE $<$<BOOL:${HAVE_LIBM}>:m>) ### Set public headers and shared library version. Version info is critical for Unix-like OSes. set_target_properties(fdk-aac PROPERTIES PUBLIC_HEADER "${fdk_aacinclude_HEADERS}" - VERSION 2.0.1 + VERSION 2.0.2 SOVERSION 2 MACHO_COMPATIBILITY_VERSION 3.0.0 - MACHO_CURRENT_VERSION 3.1.0) + MACHO_CURRENT_VERSION 3.2.0) ### Some compiler options from Makefile.am if(MSVC) @@ -1,3 +1,9 @@ +2.0.2 + - Minor upstream updates + - Lots of upstream and local fuzzing fixes + - Added CMake project files + - Removed the MSVC specific makefile + 2.0.1 - Minor release with a number of crash/fuzz fixes, primarily for the decoder diff --git a/configure.ac b/configure.ac index 597120a..c49fa3d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl -*- Autoconf -*- dnl Process this file with autoconf to produce a configure script. -AC_INIT([fdk-aac], [2.0.1], [http://sourceforge.net/projects/opencore-amr/]) +AC_INIT([fdk-aac], [2.0.2], [http://sourceforge.net/projects/opencore-amr/]) AC_CONFIG_AUX_DIR(.) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([tar-ustar foreign]) @@ -26,7 +26,7 @@ AC_SEARCH_LIBS([sin], [m]) dnl soname version to use dnl goes by ‘current[:revision[:age]]’ with the soname ending up as dnl current.age.revision -FDK_AAC_VERSION=2:1:0 +FDK_AAC_VERSION=2:2:0 AS_IF([test x$enable_shared = xyes], [LIBS_PRIVATE=$LIBS], [LIBS_PUBLIC=$LIBS]) AC_SUBST(FDK_AAC_VERSION) |