Skip to content

Commit c840222

Browse files
committed
Version 1.13.1
1 parent 39e7127 commit c840222

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ cmake_uninstall.cmake
33
Makefile
44
CTestTestfile.cmake
55
CMakeFiles/
6+
CMakeLists.txt.user*
67
*.so
78
*.so.*
89
*.dylib
@@ -50,6 +51,7 @@ taglib.xcodeproj
5051
CMakeScripts
5152
/.clang-format
5253
/compile_commands.json
54+
/build/
5355
.clangd
5456
.cache
5557
.idea

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.
9595
set(TAGLIB_SOVERSION_CURRENT 20)
96-
set(TAGLIB_SOVERSION_REVISION 0)
96+
set(TAGLIB_SOVERSION_REVISION 1)
9797
set(TAGLIB_SOVERSION_AGE 19)
9898

9999
math(EXPR TAGLIB_SOVERSION_MAJOR "${TAGLIB_SOVERSION_CURRENT} - ${TAGLIB_SOVERSION_AGE}")

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
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+
113
TagLib 1.13 (Oct 27, 2022)
214
==========================
315

taglib/toolkit/taglib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
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\"")

0 commit comments

Comments
 (0)