Skip to content

Commit

Permalink
Version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfd committed Jan 8, 2022
1 parent 65fe04a commit e9ff0e6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ else()
endif()
endif()

project (sfizz VERSION 1.1.1 LANGUAGES CXX C)
project (sfizz VERSION 1.2.0 LANGUAGES CXX C)
set (PROJECT_DESCRIPTION "A library to load SFZ description files and use them to render music.")

# External configuration CMake scripts
Expand Down
2 changes: 1 addition & 1 deletion cmake/LV2Config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ option(SFIZZ_LV2_PSA "Enable plugin-side MIDI automations" ON)

# Configuration for this plugin
# TODO: generate version from git
set(LV2PLUGIN_VERSION_MINOR 8)
set(LV2PLUGIN_VERSION_MINOR 10)
set(LV2PLUGIN_VERSION_MICRO 0)
set(LV2PLUGIN_NAME "sfizz")
set(LV2PLUGIN_COMMENT "SFZ sampler")
Expand Down
3 changes: 2 additions & 1 deletion src/sfizz.h
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ SFIZZ_EXPORTED_API void sfizz_send_hdcc(sfizz_synth_t* synth, int delay, int cc_

/**
* @brief Send a program change event to the synth.
* @since 1.1.2
* @since 1.2.0
*
* This command should be delay-ordered with all other midi-type events
* (notes, CCs, aftertouch and pitch-wheel), otherwise the behavior of the
Expand Down Expand Up @@ -852,6 +852,7 @@ SFIZZ_EXPORTED_API void sfizz_set_oscillator_quality(sfizz_synth_t* synth, sfizz

/**
* @brief Set whether pressing the sustain pedal cancels the release stage
* @since 1.2.0
*
* @param synth The synth.
* @param value
Expand Down
4 changes: 3 additions & 1 deletion src/sfizz.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,8 @@ class SFIZZ_EXPORTED_API Sfizz
/**
* @brief Set whether pressing the sustain pedal cancels the release stage
*
* @since 1.2.0
*
* @param value
*/
void setSustainCancelsRelease(bool value);
Expand Down Expand Up @@ -497,7 +499,7 @@ class SFIZZ_EXPORTED_API Sfizz

/**
* @brief Send a program change event to the synth
* @since 1.1.2
* @since 1.2.0
*
* This command should be delay-ordered with all other midi-type events
* (notes, CCs, aftertouch and pitch-wheel), otherwise the behavior of the
Expand Down

0 comments on commit e9ff0e6

Please sign in to comment.