From 67c71dbd09bfda7ef899b4370c34f7ece8169d2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kokem=C3=BCller?= Date: Tue, 2 Feb 2021 23:30:00 +0100 Subject: [PATCH] update version numbers and README for 1.2.5 release --- README.md | 8 +++++++- ebur128/CMakeLists.txt | 2 +- ebur128/ebur128.h | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 688c278..bbf65fa 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/ebur128/CMakeLists.txt b/ebur128/CMakeLists.txt index a354a78..5f34c9a 100644 --- a/ebur128/CMakeLists.txt +++ b/ebur128/CMakeLists.txt @@ -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) diff --git a/ebur128/ebur128.h b/ebur128/ebur128.h index 3731da7..b204d9b 100644 --- a/ebur128/ebur128.h +++ b/ebur128/ebur128.h @@ -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 /* for size_t */