Bump the versions and add changelog entries for v2.0.3

This commit is contained in:
Martin Storsjo 2023-12-21 12:56:58 +02:00
parent 2e3b0f47e2
commit 716f439464
3 changed files with 10 additions and 5 deletions

View File

@ -43,7 +43,7 @@ if(POLICY CMP0091)
cmake_policy(SET CMP0091 NEW)
endif()
project(fdk-aac VERSION 2.0.2)
project(fdk-aac VERSION 2.0.3)
# 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.2
VERSION 2.0.3
SOVERSION 2
MACHO_COMPATIBILITY_VERSION 3.0.0
MACHO_CURRENT_VERSION 3.2.0
MACHO_CURRENT_VERSION 3.3.0
LINKER_LANGUAGE C)
### Some compiler options from Makefile.am

View File

@ -1,3 +1,8 @@
2.0.3
- Minor upstream updates
- Fixed one case of a failed assert in SBR encoding
- Added build support for s390x
2.0.2
- Minor upstream updates
- Lots of upstream and local fuzzing fixes

View File

@ -1,7 +1,7 @@
dnl -*- Autoconf -*-
dnl Process this file with autoconf to produce a configure script.
AC_INIT([fdk-aac], [2.0.2], [http://sourceforge.net/projects/opencore-amr/])
AC_INIT([fdk-aac], [2.0.3], [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:2:0
FDK_AAC_VERSION=2:3:0
AS_IF([test x$enable_shared = xyes], [LIBS_PRIVATE=$LIBS], [LIBS_PUBLIC=$LIBS])
AC_SUBST(FDK_AAC_VERSION)