Version bump for 0.19.1

This commit is contained in:
casey langen 2017-07-05 22:21:18 -07:00
parent 2e3f62e225
commit a0f1b8a39c
3 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,12 @@
0.19.1
* re-introduced the multi-threaded indexer! this makes metadata scanning quite
a bit faster on some systems
* fixed a bug where the selected item in browse view may change during the
indexing process if more music is added to the library
--------------------------------------------------------------------------------
0.19.0
* fixed a bug where the wrong (or multiple) items may be highlighted in browse

View File

@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.0)
project(musikbox)
set (musikbox_VERSION_MAJOR 0)
set (musikbox_VERSION_MINOR 19)
set (musikbox_VERSION_PATCH 0)
set (musikbox_VERSION_PATCH 1)
set (musikbox_VERSION "${musikbox_VERSION_MAJOR}.${musikbox_VERSION_MINOR}.${musikbox_VERSION_PATCH}")
include(CMakeToolsHelpers OPTIONAL)

View File

@ -2,5 +2,5 @@
#define VERSION_MAJOR 0
#define VERSION_MINOR 19
#define VERSION_PATCH 0
#define VERSION "0.19.0"
#define VERSION_PATCH 1
#define VERSION "0.19.1"