Update versions again
This commit is contained in:
@@ -86,15 +86,14 @@ unless explicitly enabled, e.g.
|
|||||||
$ meson build -Dauto_features=disabled -Dcmdline=enabled
|
$ meson build -Dauto_features=disabled -Dcmdline=enabled
|
||||||
```
|
```
|
||||||
|
|
||||||
By default the build also produces both static and dynamic library
|
By default the build produces both static and dynamic library
|
||||||
targets. To force only static or dynamic (shared) output, use one of
|
targets. To produce only one of these, use either
|
||||||
|
|
||||||
```
|
```
|
||||||
$ meson build -Ddefault_library=static
|
$ meson build -Ddefault_library=static
|
||||||
$ meson build -Ddefault_library=shared
|
$ meson build -Ddefault_library=shared
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
Rubber Band Library is written entirely in C++ and requires a C++11
|
Rubber Band Library is written entirely in C++ and requires a C++11
|
||||||
compiler. It is unlikely to make any difference (performance or
|
compiler. It is unlikely to make any difference (performance or
|
||||||
otherwise) which C++ standard you compile with, as long as it's no
|
otherwise) which C++ standard you compile with, as long as it's no
|
||||||
|
|||||||
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.1
|
PROJECT_NUMBER = 3.1.2
|
||||||
|
|
||||||
# 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.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
project(
|
project(
|
||||||
'Rubber Band Library',
|
'Rubber Band Library',
|
||||||
'c', 'cpp',
|
'c', 'cpp',
|
||||||
version: '3.1.1',
|
version: '3.1.2',
|
||||||
license: 'GPL-2.0-or-later',
|
license: 'GPL-2.0-or-later',
|
||||||
default_options: [
|
default_options: [
|
||||||
'cpp_std=c++11',
|
'cpp_std=c++11',
|
||||||
|
|||||||
@@ -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.0"
|
#define RUBBERBAND_VERSION "3.1.2"
|
||||||
#define RUBBERBAND_API_MAJOR_VERSION 2
|
#define RUBBERBAND_API_MAJOR_VERSION 2
|
||||||
#define RUBBERBAND_API_MINOR_VERSION 7
|
#define RUBBERBAND_API_MINOR_VERSION 7
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define RUBBERBAND_VERSION "3.1.0"
|
#define RUBBERBAND_VERSION "3.1.2"
|
||||||
#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