Version bump in preparation for release.

This commit is contained in:
casey langen 2017-04-30 19:46:24 -07:00
parent 8ce038c416
commit 6f575683b9
4 changed files with 19 additions and 3 deletions

View File

@ -1,3 +1,19 @@
0.12.1
user-facing:
* huge update to `musikdroid` -- it is now able to stream music from any
`musikbox` installation! see settings > playback mode.
* added cddb (actually, freedb) lookup for audio CDs
* added new "add to beginning of play queue" and "play album" context menu
options
low-level:
* fixed database upsert logic to be faster and more reliable
--------------------------------------------------------------------------------
0.12.0
user-facing:

View File

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

Binary file not shown.

View File

@ -9,8 +9,8 @@ android {
applicationId "io.casey.musikcube.remote"
minSdkVersion 16
targetSdkVersion 25
versionCode 3
versionName "0.2.0"
versionCode 4
versionName "0.5.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}