diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b9d555e..22af8853 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +TagLib 2.2 (Feb 18, 2026) +========================= + + * Support for Matroska (MKA, MKV) and WebM files. + * Support for NI STEM in MP4 files. + * Stricter verification of ID3v2 frames. + * Fix setting the last header flag in Ogg FLAC files. + * Fix reading of the last page in Ogg streams. + * Avoid corrupting invalid Ogg FLAC files without Vorbis comment. + * Windows: Support MP4 files with 64-bit atoms. + * Fix use of property keys with non-ASCII characters in C bindings. + * Fix building with Android NDK 29. + TagLib 2.1.1 (June 30, 2025) ============================ diff --git a/CMakeLists.txt b/CMakeLists.txt index f60afad9..7dc6fdea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -92,8 +92,8 @@ endif() # Minor version: increase it if you add ABI compatible features. # Patch version: increase it for bug fix releases. set(TAGLIB_SOVERSION_MAJOR 2) -set(TAGLIB_SOVERSION_MINOR 1) -set(TAGLIB_SOVERSION_PATCH 1) +set(TAGLIB_SOVERSION_MINOR 2) +set(TAGLIB_SOVERSION_PATCH 0) include(ConfigureChecks.cmake) diff --git a/taglib/toolkit/taglib.h b/taglib/toolkit/taglib.h index 219fae59..a11ffac6 100644 --- a/taglib/toolkit/taglib.h +++ b/taglib/toolkit/taglib.h @@ -27,8 +27,8 @@ #define TAGLIB_H #define TAGLIB_MAJOR_VERSION 2 -#define TAGLIB_MINOR_VERSION 1 -#define TAGLIB_PATCH_VERSION 1 +#define TAGLIB_MINOR_VERSION 2 +#define TAGLIB_PATCH_VERSION 0 #if (defined(_MSC_VER) && _MSC_VER >= 1600) #define TAGLIB_CONSTRUCT_BITSET(x) static_cast(x)