diff --git a/CMakeLists.txt b/CMakeLists.txt index da17b8af..e00f04d3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,7 +48,7 @@ endif() set(TAGLIB_LIB_MAJOR_VERSION "1") set(TAGLIB_LIB_MINOR_VERSION "7") -set(TAGLIB_LIB_PATCH_VERSION "1") +set(TAGLIB_LIB_PATCH_VERSION "2") set(TAGLIB_LIB_VERSION_STRING "${TAGLIB_LIB_MAJOR_VERSION}.${TAGLIB_LIB_MINOR_VERSION}.${TAGLIB_LIB_PATCH_VERSION}") @@ -57,7 +57,7 @@ set(TAGLIB_LIB_VERSION_STRING "${TAGLIB_LIB_MAJOR_VERSION}.${TAGLIB_LIB_MINOR_VE # 3. If any interfaces have been added since the last public release, then increment age. # 4. If any interfaces have been removed since the last public release, then set age to 0. set(TAGLIB_SOVERSION_CURRENT 11) -set(TAGLIB_SOVERSION_REVISION 1) +set(TAGLIB_SOVERSION_REVISION 2) set(TAGLIB_SOVERSION_AGE 10) math(EXPR TAGLIB_SOVERSION_MAJOR "${TAGLIB_SOVERSION_CURRENT} - ${TAGLIB_SOVERSION_AGE}") diff --git a/NEWS b/NEWS index a4b5c25b..885c8543 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,12 @@ TagLib 1.8 (In Development) * Added methods for checking if WMA and MP4 files are DRM-protected. * Started using atomic int operations for reference counting. +TagLib 1.7.2 (Apr 20, 2012) +=========================== + + * Fixed division by zero while parsing corrupted MP4 files (CVE-2012-2396). + * Fixed compilation on Haiku. + TagLib 1.7.1 (Mar 17, 2012) ===========================