# HG changeset patch # User Chris Cannam # Date 1643189761 0 # Wed Jan 26 09:36:01 2022 +0000 # Node ID 4e2177c66756fecacccf211df5f8a97d01070ef0 # Parent bb94816899c7dcf15201f00405abdf0ab605d53a This will be 2.0.2 diff --git a/CHANGELOG b/CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ + +Changes in Rubber Band v2.0.2 + + * Fix a crash in certain configurations when using mid-side + processing (OptionChannelsTogether) with pitch shifts + * Fix failure to build on very old macOS versions (<= 10.8) when + combined with much newer compilers + +The API is unchanged and the library is binary compatible back to +version 1.7. + Changes in Rubber Band v2.0.1 diff --git a/Doxyfile b/Doxyfile --- a/Doxyfile +++ b/Doxyfile @@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 2.0.1 +PROJECT_NUMBER = 2.0.2 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/meson.build b/meson.build --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'Rubber Band Library', 'c', 'cpp', - version: '2.0.1', + version: '2.0.2', license: 'GPL-2.0-or-later', default_options: [ 'cpp_std=c++14', @@ -14,7 +14,7 @@ meson_version: '>= 0.53.0' ) -rubberband_dynamic_library_version = '2.1.6' +rubberband_dynamic_library_version = '2.1.7' system = host_machine.system() architecture = host_machine.cpu_family() diff --git a/rubberband/RubberBandStretcher.h b/rubberband/RubberBandStretcher.h --- a/rubberband/RubberBandStretcher.h +++ b/rubberband/RubberBandStretcher.h @@ -24,7 +24,7 @@ #ifndef RUBBERBAND_STRETCHER_H #define RUBBERBAND_STRETCHER_H -#define RUBBERBAND_VERSION "2.0.1" +#define RUBBERBAND_VERSION "2.0.2" #define RUBBERBAND_API_MAJOR_VERSION 2 #define RUBBERBAND_API_MINOR_VERSION 6 diff --git a/rubberband/rubberband-c.h b/rubberband/rubberband-c.h --- a/rubberband/rubberband-c.h +++ b/rubberband/rubberband-c.h @@ -28,7 +28,7 @@ extern "C" { #endif -#define RUBBERBAND_VERSION "2.0.1" +#define RUBBERBAND_VERSION "2.0.2" #define RUBBERBAND_API_MAJOR_VERSION 2 #define RUBBERBAND_API_MINOR_VERSION 6