Skip to content

Commit

Permalink
Release 0.2.2
Browse files Browse the repository at this point in the history
Fixes #169
  • Loading branch information
SoapGentoo committed Sep 5, 2021
1 parent aadb050 commit c96f5e3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if(POLICY CMP0091)
endif()
endif()

project(libsamplerate VERSION 0.2.1 LANGUAGES C)
project(libsamplerate VERSION 0.2.2 LANGUAGES C)

# Configuration

Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Unreleased
Version 0.2.2 (2021-09-05)
* Fix CMake overlinking for examples (#146)
* Switch to GCC's visibility for hiding more implementation details
* Check GNU ld instead of gcc for exported symbols control logic in
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![Logo](docs/SRC.png)

This is libsamplerate, `0.2.1`.
This is libsamplerate, `0.2.2`.

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

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
dnl Require autoconf version >= 2.69)
AC_PREREQ([2.69])

AC_INIT([libsamplerate],[0.2.1],[[email protected]],
AC_INIT([libsamplerate],[0.2.2],[[email protected]],
[libsamplerate],[https://github.com/libsndfile/libsamplerate/])

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

m4_define([lt_current], [2])
m4_define([lt_revision], [1])
m4_define([lt_revision], [2])
m4_define([lt_age], [2])

dnl This is ABI version for linker scripts, CMake uses the same format for
Expand Down
2 changes: 2 additions & 0 deletions docs/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ layout: default
- Version 0.1.9 (Sep 19 2016) Fix for a segfault. Relicense under BSD license.
- Version 0.2.0 (Jan 21 2021) Cleaned up build system.
- Version 0.2.1 (Jan 23 2021) Fix libtool ABI versioning.
- Version 0.2.2 (Sep 05 2021) Fix ABI version incompatibility between Autotools
and CMake build on Apple platforms. Minor bug fixes and updates.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ if(BUILD_SHARED_LIBS)

# keep in sync with configure.ac
set (LIBSAMPLERATE_ABI_VERSION_CURRENT 2)
set (LIBSAMPLERATE_ABI_VERSION_REVISION 1)
set (LIBSAMPLERATE_ABI_VERSION_REVISION 2)
set (LIBSAMPLERATE_ABI_VERSION_AGE 2)
math (EXPR LIBSAMPLERATE_MACHO_COMPATIBILITY_VERSION "${LIBSAMPLERATE_ABI_VERSION_CURRENT} + 1")
set (LIBSAMPLERATE_MACHO_CURRENT_VERSION "${LIBSAMPLERATE_MACHO_COMPATIBILITY_VERSION}.${LIBSAMPLERATE_ABI_VERSION_REVISION}.0")
Expand Down

0 comments on commit c96f5e3

Please sign in to comment.