Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/soxr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Sykes <rob@rob-Ideapad-S205.(none)>2013-03-03 12:15:37 +0400
committerRob Sykes <rob@rob-Ideapad-S205.(none)>2013-03-03 12:15:37 +0400
commitaaee21bb8c04f777c9a9a607f99bf87a9ee0f01c (patch)
tree65b990684bf177322b5d14614021a47449c310a6
parentdee0ed7d63de43c022c4ed74870db8b5705f4f57 (diff)
update versions, NEWS0.1.1
-rw-r--r--CMakeLists.txt6
-rw-r--r--NEWS5
-rw-r--r--src/CMakeLists.txt2
-rw-r--r--src/soxr.h4
4 files changed, 9 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index baee62e..8a24952 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,7 +12,7 @@ set (DESCRIPTION_SUMMARY "High quality, one-dimensional sample-rate conversion l
set (PROJECT_VERSION_MAJOR 0)
set (PROJECT_VERSION_MINOR 1)
-set (PROJECT_VERSION_PATCH 0)
+set (PROJECT_VERSION_PATCH 1)
# For shared-object; if, since the last public release:
# * library code changed at all: ++revision
@@ -20,9 +20,9 @@ set (PROJECT_VERSION_PATCH 0)
# * interfaces added: ++age
# * interfaces removed: age = 0
-set (SO_VERSION_CURRENT 0)
+set (SO_VERSION_CURRENT 1)
set (SO_VERSION_REVISION 0)
-set (SO_VERSION_AGE 0)
+set (SO_VERSION_AGE 1)
diff --git a/NEWS b/NEWS
index 91119ca..64f8ffa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
-Version 0.1.1 (2013-03-02)
+Version 0.1.1 (2013-03-03)
* Minor fixes/improvements to build/tests.
- * Fix crash when null error pointer passed to src_create (lsr bindings only).
+ * Fix crash (e.g. with k3b) when null error pointer passed to src_create (lsr
+ bindings only).
* Fix broken resampling in many cases with SIMD and anti_aliasing_pc < 100.
* For clarity, renamed and slightly changed usage of three parameters in
soxr_quality_spec_t (ABI compatible, API incompatible). An application not
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 106a45e..2a21156 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -59,7 +59,7 @@ endif ()
if (WITH_LSR_BINDINGS)
set (LSR ${PROJECT_NAME}-lsr)
- set (LSR_SO_VERSION 0.1.8)
+ set (LSR_SO_VERSION 0.1.9)
set (LSR_SO_VERSION_MAJOR 0)
add_library (${LSR} ${LIB_TYPE} lsr)
target_link_libraries (${LSR} ${PROJECT_NAME})
diff --git a/src/soxr.h b/src/soxr.h
index 8405805..d878bb8 100644
--- a/src/soxr.h
+++ b/src/soxr.h
@@ -64,8 +64,8 @@ input or output (e.g. ilen, olen). */
/* E.g. #if SOXR_THIS_VERSION >= SOXR_VERSION(0,1,1) ... */
#define SOXR_VERSION(x,y,z) (((x)<<16)|((y)<<8)|(z))
-#define SOXR_THIS_VERSION SOXR_VERSION(0,1,0)
-#define SOXR_THIS_VERSION_STR "0.1.0"
+#define SOXR_THIS_VERSION SOXR_VERSION(0,1,1)
+#define SOXR_THIS_VERSION_STR "0.1.1"