diff --git a/CHANGELOG b/CHANGELOG index 2cf4d9c..601f945 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,24 @@ +Changes in Rubber Band v1.9.1 + + * Switch build system from Makefiles and Visual Studio project to + Meson/Ninja for all platforms. There are still Makefiles and VS + projects included in otherbuilds/ for those who wish to use them to + build the static library directly + * Make various fixes to improve sound quality when pitch-shifting + dynamically in real-time (requires libsamplerate) + * Fix floating-point exception when a very very long stretch factor + is presented + * Move the two directories that together provide the .NET interface + (rubberband-sharp and rubberband-dll) into their own subdir (dotnet) + * Ensure the library builds and runs correctly on ARM Mac (Apple + Silicon, M1), and also on Windows using the Visual C++ Clang + front-end + +The API is unchanged and the library is binary compatible with +version 1.7. + + Changes in Rubber Band v1.9 * Fix incorrect numbering of pitch speed/quality flags in the diff --git a/meson.build b/meson.build index 4f2172c..0d81506 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'Rubber Band Library', 'c', 'cpp', - version: '1.9.0', + version: '1.9.1', license: 'GPL-2.0-or-later', default_options: [ # All Rubber Band code is actually C++98, but some compilers no @@ -15,7 +15,7 @@ project( meson_version: '>= 0.53.0' ) -rubberband_dynamic_library_version = '2.1.2' +rubberband_dynamic_library_version = '2.1.3' system = build_machine.system() architecture = host_machine.cpu_family()