File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
113TagLib 2.0.2 (Aug 24, 2024)
214===========================
315
Original file line number Diff line number Diff 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.
9797set (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
101101include (ConfigureChecks.cmake )
102102
Original file line number Diff line number Diff line change 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)
You can’t perform that action at this time.
0 commit comments