Skip to content

Commit

Permalink
update version numbers and README for 1.2.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jiixyj committed Feb 2, 2021
1 parent 114a7f5 commit 67c71db
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ See also [loudness-scanner tool](https://github.com/jiixyj/loudness-scanner).
News
----

Next release:
v1.2.5 released:
* Remove `BUILD_STATIC_LIBS` build option. Instead the CMake-supported
`BUILD_SHARED_LIBS` option is now honored as expected.
* Various code cleanups, warning fixes and documentation improvements
* Fix issue related to filter state indexing with high channel enums (#77)
* Introduce limits for number of channels and maximum supported samplerate to
avoid integer overflows
* Fix error return code of `ebur128_set_channel`. The actual behavior is now
aligned to the documentation (#90).

v1.2.4 released:
* Fix broken `ebur128_loudness_global_multiple()` function. Since v1.1.0 it
Expand Down
2 changes: 1 addition & 1 deletion ebur128/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ endif()


set(EBUR128_VERSION_MAJOR 1)
set(EBUR128_VERSION 1.2.4)
set(EBUR128_VERSION 1.2.5)

add_library(ebur128 ebur128.c)

Expand Down
2 changes: 1 addition & 1 deletion ebur128/ebur128.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extern "C" {

#define EBUR128_VERSION_MAJOR 1
#define EBUR128_VERSION_MINOR 2
#define EBUR128_VERSION_PATCH 4
#define EBUR128_VERSION_PATCH 5

#include <stddef.h> /* for size_t */

Expand Down

0 comments on commit 67c71db

Please sign in to comment.