Skip to content

Commit 74d93db

Browse files
committed
Update changelog for v2.2beta
1 parent 397b6c1 commit 74d93db

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
TagLib 2.2 (Feb 18, 2026)
2+
=========================
3+
4+
* Support for Matroska (MKA, MKV) and WebM files.
5+
* Support for NI STEM in MP4 files.
6+
* Stricter verification of ID3v2 frames.
7+
* Fix setting the last header flag in Ogg FLAC files.
8+
* Fix reading of the last page in Ogg streams.
9+
* Avoid corrupting invalid Ogg FLAC files without Vorbis comment.
10+
* Windows: Support MP4 files with 64-bit atoms.
11+
* Fix use of property keys with non-ASCII characters in C bindings.
12+
* Fix building with Android NDK 29.
13+
114
TagLib 2.1.1 (June 30, 2025)
215
============================
316

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ endif()
9292
# Minor version: increase it if you add ABI compatible features.
9393
# Patch version: increase it for bug fix releases.
9494
set(TAGLIB_SOVERSION_MAJOR 2)
95-
set(TAGLIB_SOVERSION_MINOR 1)
96-
set(TAGLIB_SOVERSION_PATCH 1)
95+
set(TAGLIB_SOVERSION_MINOR 2)
96+
set(TAGLIB_SOVERSION_PATCH 0)
9797

9898
include(ConfigureChecks.cmake)
9999

taglib/toolkit/taglib.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#define TAGLIB_H
2828

2929
#define TAGLIB_MAJOR_VERSION 2
30-
#define TAGLIB_MINOR_VERSION 1
31-
#define TAGLIB_PATCH_VERSION 1
30+
#define TAGLIB_MINOR_VERSION 2
31+
#define TAGLIB_PATCH_VERSION 0
3232

3333
#if (defined(_MSC_VER) && _MSC_VER >= 1600)
3434
#define TAGLIB_CONSTRUCT_BITSET(x) static_cast<unsigned long long>(x)

0 commit comments

Comments
 (0)