diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 5c01cd4e1..da8801201 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,9 +1,10 @@ -0.62.1 +0.62.2 macOS only release. musikcube: -* added missing `gnutls` dependency to project (now required by libmicrohttpd) +* added missing `gnutls` dependency to project for homebrew builds +* compile `libmicrohttpd` from source for binary distributions on macOS -------------------------------------------------------------------------------- diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d64d52f0..fc816977c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.0) project(musikcube) set (musikcube_VERSION_MAJOR 0) -set (musikcube_VERSION_MINOR 62) -set (musikcube_VERSION_PATCH 1) +set (musikcube_VERSION_MINOR 61) +set (musikcube_VERSION_PATCH 2) set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}") include(CMakeToolsHelpers OPTIONAL) diff --git a/musikcube.spec b/musikcube.spec index 9eb46a715..28bd47f29 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.62.1 +%define version 0.61.2 Name: %{name} Version: %{version} Release: %{dist} diff --git a/src/musikcube/app/version.h b/src/musikcube/app/version.h index cba90fa9f..290962a39 100644 --- a/src/musikcube/app/version.h +++ b/src/musikcube/app/version.h @@ -3,9 +3,9 @@ #include #define VERSION_MAJOR 0 -#define VERSION_MINOR 62 -#define VERSION_PATCH 1 -#define VERSION "0.62.1" +#define VERSION_MINOR 61 +#define VERSION_PATCH 2 +#define VERSION "0.61.2" namespace musik { namespace cube { diff --git a/src/musikcube/musikcube.rc b/src/musikcube/musikcube.rc index caa5c03b6..7952a2014 100644 Binary files a/src/musikcube/musikcube.rc and b/src/musikcube/musikcube.rc differ