Skip to content

Commit d48f020

Browse files
committed
Version 2.1
1 parent 3ccc390 commit d48f020

3 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
TagLib 2.1 (May 31, 2025)
2+
=========================
3+
4+
* Support for Shorten (SHN) files.
5+
* Compile time configuration of supported formats: WITH_APE, WITH_ASF, ...
6+
* Compile time configuration of data and temporary directories for unit tests:
7+
TESTS_DIR and TESTS_TMPDIR.
8+
* C bindings: Added taglib_file_new_wchar() and taglib_file_new_type_wchar().
9+
* Preserve unicode encoding when downgrading to ID3v2.3.
10+
* Do not store FLAC metadata blocks which are too large.
11+
* Fix segfaults with String and ByteVector nullptr arguments.
12+
113
TagLib 2.0.2 (Aug 24, 2024)
214
===========================
315

CMakeLists.txt

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

101101
include(ConfigureChecks.cmake)
102102

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 0
31-
#define TAGLIB_PATCH_VERSION 2
30+
#define TAGLIB_MINOR_VERSION 1
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)