Skip to content

Commit

Permalink
Prepare for 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed Apr 15, 2020
1 parent 72cceeb commit 516e3b3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.3)

set(chromaprint_VERSION_MAJOR 1)
set(chromaprint_VERSION_MINOR 4)
set(chromaprint_VERSION_PATCH 4)
set(chromaprint_VERSION_MINOR 5)
set(chromaprint_VERSION_PATCH 0)
set(chromaprint_VERSION "${chromaprint_VERSION_MAJOR}.${chromaprint_VERSION_MINOR}.${chromaprint_VERSION_PATCH}")

project(chromaprint LANGUAGES C CXX VERSION "${chromaprint_VERSION}")
Expand Down
14 changes: 6 additions & 8 deletions NEWS.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
Version 1.5.0 -- UNRELEASED
===========================

- Add support for fpcalc -raw -signed, which helps with easier PostgreSQL integration

Version 1.4.4 -- February 10, 2018
==================================
Version 1.5.0 -- April 15, 2020
===============================

- Fix unit tests on big endian CPUs
- Added support for fpcalc -raw -signed, which helps with easier PostgreSQL integration
- Added support for using libavresample instead of libswresample
- Fixed possible crash in chromaprint_decode_fingerprint
- Fixed unit tests on big endian CPUs

Version 1.4.3 -- January 21, 2018
==================================
Expand Down
4 changes: 2 additions & 2 deletions src/chromaprint.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ struct ChromaprintMatcherContextPrivate;
typedef struct ChromaprintMatcherContextPrivate ChromaprintMatcherContext;

#define CHROMAPRINT_VERSION_MAJOR 1
#define CHROMAPRINT_VERSION_MINOR 4
#define CHROMAPRINT_VERSION_PATCH 4
#define CHROMAPRINT_VERSION_MINOR 5
#define CHROMAPRINT_VERSION_PATCH 0

enum ChromaprintAlgorithm {
CHROMAPRINT_ALGORITHM_TEST1 = 0,
Expand Down

0 comments on commit 516e3b3

Please sign in to comment.