From d48f02030d0d8eb94003da7213ea38e7aae6b422 Mon Sep 17 00:00:00 2001 From: Urs Fleisch Date: Wed, 21 May 2025 21:05:30 +0200 Subject: [PATCH] Version 2.1 --- CHANGELOG.md | 12 ++++++++++++ CMakeLists.txt | 4 ++-- taglib/toolkit/taglib.h | 4 ++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8091bb6..9fb0e40a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +TagLib 2.1 (May 31, 2025) +========================= + + * Support for Shorten (SHN) files. + * Compile time configuration of supported formats: WITH_APE, WITH_ASF, ... + * Compile time configuration of data and temporary directories for unit tests: + TESTS_DIR and TESTS_TMPDIR. + * C bindings: Added taglib_file_new_wchar() and taglib_file_new_type_wchar(). + * Preserve unicode encoding when downgrading to ID3v2.3. + * Do not store FLAC metadata blocks which are too large. + * Fix segfaults with String and ByteVector nullptr arguments. + TagLib 2.0.2 (Aug 24, 2024) =========================== diff --git a/CMakeLists.txt b/CMakeLists.txt index 00487bfb..9723138a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,8 +95,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 0) -set(TAGLIB_SOVERSION_PATCH 2) +set(TAGLIB_SOVERSION_MINOR 1) +set(TAGLIB_SOVERSION_PATCH 0) include(ConfigureChecks.cmake) diff --git a/taglib/toolkit/taglib.h b/taglib/toolkit/taglib.h index cd163535..244b44ca 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 0 -#define TAGLIB_PATCH_VERSION 2 +#define TAGLIB_MINOR_VERSION 1 +#define TAGLIB_PATCH_VERSION 0 #if (defined(_MSC_VER) && _MSC_VER >= 1600) #define TAGLIB_CONSTRUCT_BITSET(x) static_cast(x)