Skip to content

Commit 655c26f

Browse files
committed
Prepare for 1.6.0
1 parent a4a7338 commit 655c26f

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 3.10)
22

33
set(chromaprint_VERSION_MAJOR 1)
4-
set(chromaprint_VERSION_MINOR 5)
5-
set(chromaprint_VERSION_PATCH 1)
4+
set(chromaprint_VERSION_MINOR 6)
5+
set(chromaprint_VERSION_PATCH 0)
66
set(chromaprint_VERSION "${chromaprint_VERSION_MAJOR}.${chromaprint_VERSION_MINOR}.${chromaprint_VERSION_PATCH}")
77

88
project(chromaprint LANGUAGES C CXX VERSION "${chromaprint_VERSION}")

NEWS.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Version 1.6.0 -- August 28, 2025
2+
=================================
3+
4+
- Added support for FFmpeg 8.0
5+
- Added chromaprint_decode_fingerprint_header function
6+
- Added missing chromaprint_get_algorithm function implementation
7+
- Optimized simhash calculation and fingerprint decoding
8+
- Improved fingerprint compression performance by pre-allocating vector storage
9+
- CMake improvements: updated minimum version to 3.10, use GNUInstallDirs, install config targets
10+
- Build Linux ARM64 binaries
11+
- Allow build to exclude internal avresample
12+
113
Version 1.5.1 -- December 23, 2021
214
==================================
315

src/chromaprint.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ struct ChromaprintMatcherContextPrivate;
8383
typedef struct ChromaprintMatcherContextPrivate ChromaprintMatcherContext;
8484

8585
#define CHROMAPRINT_VERSION_MAJOR 1
86-
#define CHROMAPRINT_VERSION_MINOR 5
87-
#define CHROMAPRINT_VERSION_PATCH 1
86+
#define CHROMAPRINT_VERSION_MINOR 6
87+
#define CHROMAPRINT_VERSION_PATCH 0
8888

8989
enum ChromaprintAlgorithm {
9090
CHROMAPRINT_ALGORITHM_TEST1 = 0,

0 commit comments

Comments
 (0)