bump version to 0.99.0

This commit is contained in:
casey langen 2022-12-04 22:16:28 -08:00
parent dc9feae453
commit 322ea778e1
5 changed files with 13 additions and 10 deletions

View File

@ -1,12 +1,15 @@
0.98.2 0.99.0
* fix issue with directory scanning that may lead to incomplete indexing * completely removed boost as a dependency across all projects; this is a
huge milestone in the project, and will make it much easier to distribute
stable builds moving forward.
* fixed issue with directory scanning that may lead to incomplete indexing
* reverted ViewPager2 changes in `musikdroid`, as there is a bug that is * reverted ViewPager2 changes in `musikdroid`, as there is a bug that is
preventing fragments from getting re-initialized properly during the resume preventing fragments from getting re-initialized properly during the resume
cycle. cycle.
* updated Simplified Chinese translation (@UM-Li) * updated Simplified Chinese translation (@UM-Li)
* added Czech translation (@khagaroth) * added Czech translation (@khagaroth)
* upgrade to c++-17 runtime * upgraded to c++-17 runtime
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.0)
project(musikcube) project(musikcube)
set (musikcube_VERSION_MAJOR 0) set (musikcube_VERSION_MAJOR 0)
set (musikcube_VERSION_MINOR 98) set (musikcube_VERSION_MINOR 99)
set (musikcube_VERSION_PATCH 2) set (musikcube_VERSION_PATCH 0)
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}") set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
set (LIBRARY_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin/plugins) set (LIBRARY_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin/plugins)
set (EXECUTABLE_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin) set (EXECUTABLE_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin)

View File

@ -1,6 +1,6 @@
%define name musikcube %define name musikcube
%define build_timestamp %{lua: print(os.date("%Y%m%d"))} %define build_timestamp %{lua: print(os.date("%Y%m%d"))}
%define version 0.98.2 %define version 0.99.0
Name: %{name} Name: %{name}
Version: %{version} Version: %{version}
Release: %{dist} Release: %{dist}

View File

@ -37,10 +37,10 @@
#include <string> #include <string>
#define VERSION_MAJOR 0 #define VERSION_MAJOR 0
#define VERSION_MINOR 98 #define VERSION_MINOR 99
#define VERSION_PATCH 2 #define VERSION_PATCH 0
#define VERSION_COMMIT_HASH "#4facbdde" #define VERSION_COMMIT_HASH "#dc9feae4"
#define VERSION "0.98.2" #define VERSION "0.99.0"
namespace musik { namespace musik {
namespace cube { namespace cube {

Binary file not shown.