update versions, NEWS

master 0.1.1
Rob Sykes 2013-03-03 08:15:37 +00:00
parent dee0ed7d63
commit aaee21bb8c
4 changed files with 9 additions and 8 deletions

View File

@ -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)

5
NEWS
View File

@ -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

View File

@ -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})

View File

@ -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"