diff --git a/fluidsynth/include/fluidsynth/misc.h b/fluidsynth/include/fluidsynth/misc.h index 7a2b457b..e2f5d3f8 100644 --- a/fluidsynth/include/fluidsynth/misc.h +++ b/fluidsynth/include/fluidsynth/misc.h @@ -62,6 +62,7 @@ extern "C" { FLUIDSYNTH_API int fluid_is_soundfont(const char *filename); FLUIDSYNTH_API int fluid_is_midifile(const char *filename); +FLUIDSYNTH_API void fluid_free(void* ptr); #ifdef __cplusplus diff --git a/fluidsynth/include/fluidsynth/version.h b/fluidsynth/include/fluidsynth/version.h index 536e1e54..aed44793 100644 --- a/fluidsynth/include/fluidsynth/version.h +++ b/fluidsynth/include/fluidsynth/version.h @@ -31,10 +31,10 @@ extern "C" { * @brief Library version functions and defines */ -#define FLUIDSYNTH_VERSION "2.0.6" /**< String constant of libfluidsynth version. */ +#define FLUIDSYNTH_VERSION "2.0.7" /**< String constant of libfluidsynth version. */ #define FLUIDSYNTH_VERSION_MAJOR 2 /**< libfluidsynth major version integer constant. */ #define FLUIDSYNTH_VERSION_MINOR 0 /**< libfluidsynth minor version integer constant. */ -#define FLUIDSYNTH_VERSION_MICRO 6 /**< libfluidsynth micro version integer constant. */ +#define FLUIDSYNTH_VERSION_MICRO 7 /**< libfluidsynth micro version integer constant. */ FLUIDSYNTH_API void fluid_version(int *major, int *minor, int *micro); FLUIDSYNTH_API char* fluid_version_str(void); diff --git a/fluidsynth/lib/libfluidsynth.a b/fluidsynth/lib/libfluidsynth.a index 84f0e83f..95e8c004 100644 Binary files a/fluidsynth/lib/libfluidsynth.a and b/fluidsynth/lib/libfluidsynth.a differ