From ebf4c5bbb1ce85a71764122cbc3cc3f556e66586 Mon Sep 17 00:00:00 2001 From: Urs Fleisch Date: Tue, 9 Apr 2024 19:55:08 +0200 Subject: [PATCH] Version 2.0.1 --- CHANGELOG.md | 11 +++++++++++ CMakeLists.txt | 2 +- taglib/toolkit/taglib.h | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a4e92d5..46cc8283 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +TagLib 2.0.1 (Apr 9, 2024) +========================== + + * Fix aborting when _GLIBCXX_ASSERTIONS are enabled. + * Fall back to utf8cpp header detection in the case that its CMake + configuration is removed. + * Improve compatibility with the SWIG interface compiler. + * Build system fixes for testing without bindings, Emscripten and Illumos. + * C bindings: Fix setting UTF-8 encoded property values. + * Windows: Fix opening long paths. + TagLib 2.0 (Jan 24, 2024) ========================= diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e9df4a8..14e731aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -93,7 +93,7 @@ endif() # Patch version: increase it for bug fix releases. set(TAGLIB_SOVERSION_MAJOR 2) set(TAGLIB_SOVERSION_MINOR 0) -set(TAGLIB_SOVERSION_PATCH 0) +set(TAGLIB_SOVERSION_PATCH 1) include(ConfigureChecks.cmake) diff --git a/taglib/toolkit/taglib.h b/taglib/toolkit/taglib.h index aa7fdd5d..a6e9cf2f 100644 --- a/taglib/toolkit/taglib.h +++ b/taglib/toolkit/taglib.h @@ -28,7 +28,7 @@ #define TAGLIB_MAJOR_VERSION 2 #define TAGLIB_MINOR_VERSION 0 -#define TAGLIB_PATCH_VERSION 0 +#define TAGLIB_PATCH_VERSION 1 #if (defined(_MSC_VER) && _MSC_VER >= 1600) #define TAGLIB_CONSTRUCT_BITSET(x) static_cast(x)