Skip to content

Commit c96f5e3

Browse files
committed
Release 0.2.2
Fixes #169
1 parent aadb050 commit c96f5e3

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if(POLICY CMP0091)
1717
endif()
1818
endif()
1919

20-
project(libsamplerate VERSION 0.2.1 LANGUAGES C)
20+
project(libsamplerate VERSION 0.2.2 LANGUAGES C)
2121

2222
# Configuration
2323

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Unreleased
1+
Version 0.2.2 (2021-09-05)
22
* Fix CMake overlinking for examples (#146)
33
* Switch to GCC's visibility for hiding more implementation details
44
* Check GNU ld instead of gcc for exported symbols control logic in

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Logo](docs/SRC.png)
22

3-
This is libsamplerate, `0.2.1`.
3+
This is libsamplerate, `0.2.2`.
44

55
libsamplerate (also known as Secret Rabbit Code) is a library for performing sample rate conversion of audio data.
66

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
dnl Require autoconf version >= 2.69)
44
AC_PREREQ([2.69])
55

6-
AC_INIT([libsamplerate],[0.2.1],[erikd@mega-nerd.com],
6+
AC_INIT([libsamplerate],[0.2.2],[erikd@mega-nerd.com],
77
[libsamplerate],[https://github.com/libsndfile/libsamplerate/])
88

99
dnl Check whether we want to set defaults for CFLAGS, CPPFLAGS and LDFLAGS
@@ -76,7 +76,7 @@ dnl to 0.
7676
dnl This is libtool version of library, we add it to `--version-info` property.
7777

7878
m4_define([lt_current], [2])
79-
m4_define([lt_revision], [1])
79+
m4_define([lt_revision], [2])
8080
m4_define([lt_age], [2])
8181

8282
dnl This is ABI version for linker scripts, CMake uses the same format for

docs/history.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ layout: default
3434
- Version 0.1.9 (Sep 19 2016) Fix for a segfault. Relicense under BSD license.
3535
- Version 0.2.0 (Jan 21 2021) Cleaned up build system.
3636
- Version 0.2.1 (Jan 23 2021) Fix libtool ABI versioning.
37+
- Version 0.2.2 (Sep 05 2021) Fix ABI version incompatibility between Autotools
38+
and CMake build on Apple platforms. Minor bug fixes and updates.

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ if(BUILD_SHARED_LIBS)
103103

104104
# keep in sync with configure.ac
105105
set (LIBSAMPLERATE_ABI_VERSION_CURRENT 2)
106-
set (LIBSAMPLERATE_ABI_VERSION_REVISION 1)
106+
set (LIBSAMPLERATE_ABI_VERSION_REVISION 2)
107107
set (LIBSAMPLERATE_ABI_VERSION_AGE 2)
108108
math (EXPR LIBSAMPLERATE_MACHO_COMPATIBILITY_VERSION "${LIBSAMPLERATE_ABI_VERSION_CURRENT} + 1")
109109
set (LIBSAMPLERATE_MACHO_CURRENT_VERSION "${LIBSAMPLERATE_MACHO_COMPATIBILITY_VERSION}.${LIBSAMPLERATE_ABI_VERSION_REVISION}.0")

0 commit comments

Comments
 (0)