File tree Expand file tree Collapse file tree 4 files changed +16
-2
lines changed
Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ cmake_uninstall.cmake
33Makefile
44CTestTestfile.cmake
55CMakeFiles /
6+ CMakeLists.txt.user *
67* .so
78* .so. *
89* .dylib
@@ -50,6 +51,7 @@ taglib.xcodeproj
5051CMakeScripts
5152/.clang-format
5253/compile_commands.json
54+ /build /
5355.clangd
5456.cache
5557.idea
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ endif()
9393# 3. If any interfaces have been added since the last public release, then increment age.
9494# 4. If any interfaces have been removed since the last public release, then set age to 0.
9595set (TAGLIB_SOVERSION_CURRENT 20)
96- set (TAGLIB_SOVERSION_REVISION 0 )
96+ set (TAGLIB_SOVERSION_REVISION 1 )
9797set (TAGLIB_SOVERSION_AGE 19)
9898
9999math (EXPR TAGLIB_SOVERSION_MAJOR "${TAGLIB_SOVERSION_CURRENT} - ${TAGLIB_SOVERSION_AGE} " )
Original file line number Diff line number Diff line change 1+ TagLib 1.13.1 (Jul 1, 2023)
2+ ===========================
3+
4+ * Fixed parsing of TXXX frames without description.
5+ * Detect MP4 atoms with invalid length or type.
6+ * Do not miss ID3v2 frames when an extended header is present.
7+ * Use property "DISCSUBTITLE" for ID3v2 "TSST" frame.
8+ * Build system improvements: Use absolute path for macOS dylib install name,
9+ support --define-prefix when using pkg-config, fixed minimum required
10+ CppUnit version.
11+ * Code clean up using clang-tidy.
12+
113TagLib 1.13 (Oct 27, 2022)
214==========================
315
Original file line number Diff line number Diff line change 3030
3131#define TAGLIB_MAJOR_VERSION 1
3232#define TAGLIB_MINOR_VERSION 13
33- #define TAGLIB_PATCH_VERSION 0
33+ #define TAGLIB_PATCH_VERSION 1
3434
3535#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 1)) || defined(__clang__)
3636#define TAGLIB_IGNORE_MISSING_DESTRUCTOR _Pragma (" GCC diagnostic ignored \" -Wnon-virtual-dtor\" " )
You can’t perform that action at this time.
0 commit comments