Update changelog for v2.2beta

This commit is contained in:
Urs Fleisch
2026-02-01 12:08:59 +01:00
parent 397b6c1de3
commit 74d93db166
3 changed files with 17 additions and 4 deletions

View File

@ -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)
============================

View File

@ -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)

View File

@ -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<unsigned long long>(x)