diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 896f03e7d..42776effb 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,12 @@ +0.65.1 + +musikcube: +* manually patched `websocketpp` to fix boost 1.70 compatibility. this allows + us to compile on macOS again. for more information, see here: + https://github.com/zaphoyd/websocketpp/pull/814 + +-------------------------------------------------------------------------------- + 0.65.0 musikcube: diff --git a/CMakeLists.txt b/CMakeLists.txt index f8bb240e4..0e2a4e1d5 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 65) -set (musikcube_VERSION_PATCH 0) +set (musikcube_VERSION_PATCH 1) set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}") include(CMakeToolsHelpers OPTIONAL) diff --git a/musikcube.spec b/musikcube.spec index f9453e0c7..a52ead31c 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.65.0 +%define version 0.65.1 Name: %{name} Version: %{version} Release: %{dist} diff --git a/src/musikcube/app/version.h b/src/musikcube/app/version.h index ae10fe95a..826ab69fa 100644 --- a/src/musikcube/app/version.h +++ b/src/musikcube/app/version.h @@ -4,8 +4,8 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 65 -#define VERSION_PATCH 0 -#define VERSION "0.65.0" +#define VERSION_PATCH 1 +#define VERSION "0.65.1" namespace musik { namespace cube { diff --git a/src/musikcube/musikcube.rc b/src/musikcube/musikcube.rc index a86a005d0..f6ce0d5eb 100644 Binary files a/src/musikcube/musikcube.rc and b/src/musikcube/musikcube.rc differ