Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed Sep 5, 2012
1 parent 737fda6 commit 5cf2f2b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Original file line Diff line number Diff line change
@@ -1,15 +1,15 @@
cmake_minimum_required(VERSION 2.6) cmake_minimum_required(VERSION 2.6)


project(chromaprint) project(chromaprint)
set(PROJECT_VERSION 0.6.0) set(PROJECT_VERSION 0.7.0)


# 1. If the library source code has changed at all since the last update, then increment revision. # 1. If the library source code has changed at all since the last update, then increment revision.
# 2. If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0. # 2. If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0.
# 3. If any interfaces have been added since the last public release, then increment age. # 3. If any interfaces have been added since the last public release, then increment age.
# 4. If any interfaces have been removed since the last public release, then set age to 0. # 4. If any interfaces have been removed since the last public release, then set age to 0.
set(chromaprint_SOVERSION_CURRENT 1) set(chromaprint_SOVERSION_CURRENT 2)
set(chromaprint_SOVERSION_REVISION 4) set(chromaprint_SOVERSION_REVISION 0)
set(chromaprint_SOVERSION_AGE 1) set(chromaprint_SOVERSION_AGE 2)


math(EXPR chromaprint_SOVERSION_MAJOR "${chromaprint_SOVERSION_CURRENT} - ${chromaprint_SOVERSION_AGE}") math(EXPR chromaprint_SOVERSION_MAJOR "${chromaprint_SOVERSION_CURRENT} - ${chromaprint_SOVERSION_AGE}")
math(EXPR chromaprint_SOVERSION_MINOR "${chromaprint_SOVERSION_AGE}") math(EXPR chromaprint_SOVERSION_MINOR "${chromaprint_SOVERSION_AGE}")
Expand Down
8 changes: 8 additions & 0 deletions NEWS.txt
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 0.7 -- September 5, 2012
================================

- Support for the latest FFmpeg API.
- New (non-default) fingerprint algorithm that removes leading silence.
- API to configure fingerprint algorithms, currently only used by
CHROMAPRINT_ALGORITHM_TEST4.

Version 0.6 -- December 22, 2011 Version 0.6 -- December 22, 2011
================================ ================================


Expand Down
2 changes: 1 addition & 1 deletion src/chromaprint.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extern "C" {
typedef void *ChromaprintContext; typedef void *ChromaprintContext;


#define CHROMAPRINT_VERSION_MAJOR 0 #define CHROMAPRINT_VERSION_MAJOR 0
#define CHROMAPRINT_VERSION_MINOR 6 #define CHROMAPRINT_VERSION_MINOR 7
#define CHROMAPRINT_VERSION_PATCH 0 #define CHROMAPRINT_VERSION_PATCH 0


enum ChromaprintAlgorithm { enum ChromaprintAlgorithm {
Expand Down

0 comments on commit 5cf2f2b

Please sign in to comment.