diff --git a/README.md b/README.md index bbf65fa..0170d4e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ See also [loudness-scanner tool](https://github.com/jiixyj/loudness-scanner). News ---- +v1.2.6 released: + * Fix dynamic linking on Windows. + v1.2.5 released: * Remove `BUILD_STATIC_LIBS` build option. Instead the CMake-supported `BUILD_SHARED_LIBS` option is now honored as expected. diff --git a/ebur128/CMakeLists.txt b/ebur128/CMakeLists.txt index 5eb50ee..889e64a 100644 --- a/ebur128/CMakeLists.txt +++ b/ebur128/CMakeLists.txt @@ -28,7 +28,7 @@ endif() set(EBUR128_VERSION_MAJOR 1) -set(EBUR128_VERSION 1.2.5) +set(EBUR128_VERSION 1.2.6) add_library(ebur128 ebur128.c) set_target_properties(ebur128 PROPERTIES diff --git a/ebur128/ebur128.h b/ebur128/ebur128.h index b204d9b..707bec0 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 5 +#define EBUR128_VERSION_PATCH 6 #include /* for size_t */