Skip to content

Commit

Permalink
Merge pull request #501 from jpcima/version-bump
Browse files Browse the repository at this point in the history
Version bump
  • Loading branch information
jpcima authored Oct 15, 2020
2 parents 80f0f4d + a0e8939 commit aa7c174
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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 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
Expand Down
8 changes: 4 additions & 4 deletions src/sfizz.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ typedef enum {

/**
* @brief Processing mode
* @since 0.4.1
* @since 0.5.0
*/
typedef enum {
SFIZZ_PROCESS_LIVE,
Expand Down Expand Up @@ -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.
Expand All @@ -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.
Expand All @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions src/sfizz.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ class SFIZZ_EXPORTED_API Sfizz

/**
* @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.
Expand All @@ -336,7 +336,7 @@ class SFIZZ_EXPORTED_API Sfizz

/**
* @brief Send the time position.
* @since 0.4.1
* @since 0.5.0
*
* @param delay The delay.
* @param bar The current bar.
Expand All @@ -346,7 +346,7 @@ class SFIZZ_EXPORTED_API Sfizz

/**
* @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.
Expand Down

0 comments on commit aa7c174

Please sign in to comment.