Adjust versions for 3.2.0
This commit is contained in:
2
Doxyfile
2
Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = "Rubber Band Library"
|
|||||||
# This could be handy for archiving the generated documentation or
|
# This could be handy for archiving the generated documentation or
|
||||||
# if some version control system is used.
|
# if some version control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 3.1.3
|
PROJECT_NUMBER = 3.2.0
|
||||||
|
|
||||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
||||||
# base path where the generated documentation will be put.
|
# base path where the generated documentation will be put.
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ rubberband:mono
|
|||||||
doap:maintainer :maker ;
|
doap:maintainer :maker ;
|
||||||
# Minor version will be 2x the Rubber Band API minor version
|
# Minor version will be 2x the Rubber Band API minor version
|
||||||
lv2:minorVersion 4 ;
|
lv2:minorVersion 4 ;
|
||||||
lv2:microVersion 0 ;
|
lv2:microVersion 1 ;
|
||||||
lv2:optionalFeature lv2:hardRTCapable ;
|
lv2:optionalFeature lv2:hardRTCapable ;
|
||||||
pg:mainInput rubberband:mono_in_group ;
|
pg:mainInput rubberband:mono_in_group ;
|
||||||
pg:mainOutput rubberband:mono_out_group ;
|
pg:mainOutput rubberband:mono_out_group ;
|
||||||
@@ -173,7 +173,7 @@ rubberband:r3mono
|
|||||||
doap:maintainer :maker ;
|
doap:maintainer :maker ;
|
||||||
# Minor version will be 2x the Rubber Band API minor version
|
# Minor version will be 2x the Rubber Band API minor version
|
||||||
lv2:minorVersion 4 ;
|
lv2:minorVersion 4 ;
|
||||||
lv2:microVersion 0 ;
|
lv2:microVersion 1 ;
|
||||||
lv2:optionalFeature lv2:hardRTCapable ;
|
lv2:optionalFeature lv2:hardRTCapable ;
|
||||||
pg:mainInput rubberband:mono_in_group ;
|
pg:mainInput rubberband:mono_in_group ;
|
||||||
pg:mainOutput rubberband:mono_out_group ;
|
pg:mainOutput rubberband:mono_out_group ;
|
||||||
@@ -210,7 +210,7 @@ rubberband:stereo
|
|||||||
doap:maintainer :maker ;
|
doap:maintainer :maker ;
|
||||||
# Minor version will be 2x the Rubber Band API minor version
|
# Minor version will be 2x the Rubber Band API minor version
|
||||||
lv2:minorVersion 4 ;
|
lv2:minorVersion 4 ;
|
||||||
lv2:microVersion 0 ;
|
lv2:microVersion 1 ;
|
||||||
lv2:optionalFeature lv2:hardRTCapable ;
|
lv2:optionalFeature lv2:hardRTCapable ;
|
||||||
pg:mainInput rubberband:stereo_in_group ;
|
pg:mainInput rubberband:stereo_in_group ;
|
||||||
pg:mainOutput rubberband:stereo_out_group ;
|
pg:mainOutput rubberband:stereo_out_group ;
|
||||||
@@ -263,7 +263,7 @@ rubberband:r3stereo
|
|||||||
doap:maintainer :maker ;
|
doap:maintainer :maker ;
|
||||||
# Minor version will be 2x the Rubber Band API minor version
|
# Minor version will be 2x the Rubber Band API minor version
|
||||||
lv2:minorVersion 4 ;
|
lv2:minorVersion 4 ;
|
||||||
lv2:microVersion 0 ;
|
lv2:microVersion 1 ;
|
||||||
lv2:optionalFeature lv2:hardRTCapable ;
|
lv2:optionalFeature lv2:hardRTCapable ;
|
||||||
pg:mainInput rubberband:stereo_in_group ;
|
pg:mainInput rubberband:stereo_in_group ;
|
||||||
pg:mainOutput rubberband:stereo_out_group ;
|
pg:mainOutput rubberband:stereo_out_group ;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
project(
|
project(
|
||||||
'Rubber Band Library',
|
'Rubber Band Library',
|
||||||
'c', 'cpp',
|
'c', 'cpp',
|
||||||
version: '3.1.3',
|
version: '3.2.0',
|
||||||
license: 'GPL-2.0-or-later',
|
license: 'GPL-2.0-or-later',
|
||||||
default_options: [
|
default_options: [
|
||||||
'cpp_std=c++11',
|
'cpp_std=c++11',
|
||||||
@@ -15,7 +15,7 @@ project(
|
|||||||
meson_version: '>= 0.53.0'
|
meson_version: '>= 0.53.0'
|
||||||
)
|
)
|
||||||
|
|
||||||
rubberband_dynamic_library_version = '2.2.2'
|
rubberband_dynamic_library_version = '2.2.3'
|
||||||
|
|
||||||
system = host_machine.system()
|
system = host_machine.system()
|
||||||
architecture = host_machine.cpu_family()
|
architecture = host_machine.cpu_family()
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
#ifndef RUBBERBAND_STRETCHER_H
|
#ifndef RUBBERBAND_STRETCHER_H
|
||||||
#define RUBBERBAND_STRETCHER_H
|
#define RUBBERBAND_STRETCHER_H
|
||||||
|
|
||||||
#define RUBBERBAND_VERSION "3.1.3"
|
#define RUBBERBAND_VERSION "3.2.0"
|
||||||
#define RUBBERBAND_API_MAJOR_VERSION 2
|
#define RUBBERBAND_API_MAJOR_VERSION 2
|
||||||
#define RUBBERBAND_API_MINOR_VERSION 7
|
#define RUBBERBAND_API_MINOR_VERSION 7
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define RUBBERBAND_VERSION "3.1.3"
|
#define RUBBERBAND_VERSION "3.2.0"
|
||||||
#define RUBBERBAND_API_MAJOR_VERSION 2
|
#define RUBBERBAND_API_MAJOR_VERSION 2
|
||||||
#define RUBBERBAND_API_MINOR_VERSION 7
|
#define RUBBERBAND_API_MINOR_VERSION 7
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user