diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f68357a5d..11c987fbb 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,9 @@ +0.99.1 + +* fix OpenBSD compile + +-------------------------------------------------------------------------------- + 0.99.0 * completely removed boost as a dependency across all projects; this is a diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f51d3bcb..af23e8f11 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.0) project(musikcube) set (musikcube_VERSION_MAJOR 0) set (musikcube_VERSION_MINOR 99) -set (musikcube_VERSION_PATCH 0) +set (musikcube_VERSION_PATCH 1) set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}") set (LIBRARY_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin/plugins) set (EXECUTABLE_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin) diff --git a/musikcube.spec b/musikcube.spec index 82f56a8d8..9d0f6933b 100644 --- a/musikcube.spec +++ b/musikcube.spec @@ -1,6 +1,6 @@ %define name musikcube %define build_timestamp %{lua: print(os.date("%Y%m%d"))} -%define version 0.99.0 +%define version 0.99.1 Name: %{name} Version: %{version} Release: %{dist} diff --git a/src/musikcore/version.h b/src/musikcore/version.h index 4e38d433c..88d4aa764 100644 --- a/src/musikcore/version.h +++ b/src/musikcore/version.h @@ -38,9 +38,9 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 99 -#define VERSION_PATCH 0 -#define VERSION_COMMIT_HASH "#dc9feae4" -#define VERSION "0.99.0" +#define VERSION_PATCH 1 +#define VERSION_COMMIT_HASH "#517b9fdf" +#define VERSION "0.99.1" namespace musik { namespace cube { diff --git a/src/musikcube/musikcube.rc b/src/musikcube/musikcube.rc index 22563a1f2..d14b441e6 100644 Binary files a/src/musikcube/musikcube.rc and b/src/musikcube/musikcube.rc differ