From 0cd7cb9e3b9a5659118e287eb19e3985e9dca851 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Thu, 15 Oct 2020 21:44:49 +0200 Subject: [PATCH 1/2] Update version to 0.5.0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19aa16d9..dcd2f9b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ else() endif() endif() -project (sfizz VERSION 0.4.1 LANGUAGES CXX C) +project (sfizz VERSION 0.5.0 LANGUAGES CXX C) set (PROJECT_DESCRIPTION "A library to load SFZ description files and use them to render music.") # External configuration CMake scripts From a0e893964fb58ef90d709f21c77620f66a0800e7 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Thu, 15 Oct 2020 21:48:09 +0200 Subject: [PATCH 2/2] Update `since` to reflect upcoming the stable version --- src/sfizz.h | 8 ++++---- src/sfizz.hpp | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/sfizz.h b/src/sfizz.h index 5b2ea170..ec47ad04 100644 --- a/src/sfizz.h +++ b/src/sfizz.h @@ -46,7 +46,7 @@ typedef enum { /** * @brief Processing mode - * @since 0.4.1 + * @since 0.5.0 */ typedef enum { SFIZZ_PROCESS_LIVE, @@ -356,7 +356,7 @@ SFIZZ_EXPORTED_API void sfizz_send_tempo(sfizz_synth_t* synth, int delay, float /** * @brief Send the time signature. - * @since 0.4.1 + * @since 0.5.0 * * @param synth The synth. * @param delay The delay. @@ -367,7 +367,7 @@ SFIZZ_EXPORTED_API void sfizz_send_time_signature(sfizz_synth_t* synth, int dela /** * @brief Send the time position. - * @since 0.4.1 + * @since 0.5.0 * * @param synth The synth. * @param delay The delay. @@ -378,7 +378,7 @@ SFIZZ_EXPORTED_API void sfizz_send_time_position(sfizz_synth_t* synth, int delay /** * @brief Send the playback state. - * @since 0.4.1 + * @since 0.5.0 * * @param synth The synth. * @param delay The delay. diff --git a/src/sfizz.hpp b/src/sfizz.hpp index ab39323a..81ba6cae 100644 --- a/src/sfizz.hpp +++ b/src/sfizz.hpp @@ -326,7 +326,7 @@ public: /** * @brief Send the time signature. - * @since 0.4.1 + * @since 0.5.0 * * @param delay The delay. * @param beatsPerBar The number of beats per bar, or time signature numerator. @@ -336,7 +336,7 @@ public: /** * @brief Send the time position. - * @since 0.4.1 + * @since 0.5.0 * * @param delay The delay. * @param bar The current bar. @@ -346,7 +346,7 @@ public: /** * @brief Send the playback state. - * @since 0.4.1 + * @since 0.5.0 * * @param delay The delay. * @param playbackState The playback state, 1 if playing, 0 if stopped.