Version bump to 0.26.0

This commit is contained in:
casey langen 2017-09-19 21:52:21 -07:00
parent ef933c3649
commit 1479ddac80
5 changed files with 14 additions and 6 deletions

View File

@ -1,3 +1,11 @@
0.26.0
* added the ability to rebind UP, DOWN, LEFT, RIGHT, PAGE_UP, PAGE_DOWN, END and
HOME keys to allow for VIM-style key bindings
* fixed a focus related bug when switching between main views
--------------------------------------------------------------------------------
0.25.2
musikcube:

View File

@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.0)
project(musikcube)
set (musikcube_VERSION_MAJOR 0)
set (musikcube_VERSION_MINOR 25)
set (musikcube_VERSION_PATCH 2)
set (musikcube_VERSION_MINOR 26)
set (musikcube_VERSION_PATCH 0)
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
include(CMakeToolsHelpers OPTIONAL)

View File

@ -1,6 +1,6 @@
#pragma once
#define VERSION_MAJOR 0
#define VERSION_MINOR 25
#define VERSION_PATCH 2
#define VERSION "0.25.2"
#define VERSION_MINOR 26
#define VERSION_PATCH 0
#define VERSION "0.26.0"

Binary file not shown.

View File

@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta5'
classpath 'com.android.tools.build:gradle:3.0.0-beta6'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}