Version bump to 0.93.0 for next release.

This commit is contained in:
casey langen 2020-06-19 02:47:55 +01:00
parent 48a15ed1f1
commit 19634e67ca
6 changed files with 19 additions and 7 deletions

View File

@ -1,3 +1,15 @@
0.93.0
musikcube:
* added a new decoder based on `libopenmpt` to support playing mod/tracker
files.
* fixed a bug when browsing directories that contain entries from custom
`IndexerSource` plugins
* fixed directory scanning bugs related to NFS (and potentially other
filesystem) volumes.
--------------------------------------------------------------------------------
0.92.1
server:

View File

@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.0)
project(musikcube)
set (musikcube_VERSION_MAJOR 0)
set (musikcube_VERSION_MINOR 92)
set (musikcube_VERSION_PATCH 1)
set (musikcube_VERSION_MINOR 93)
set (musikcube_VERSION_PATCH 0)
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/.cmake)

View File

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

View File

@ -1,5 +1,5 @@
name: musikcube # you probably want to 'snapcraft register <name>'
version: 0.92.1
version: 0.93.0
summary: a terminal-based music player, metadata indexer, and server
description: |
musikcube is a fully functional terminal-based music player, library, and

View File

@ -37,9 +37,9 @@
#include <string>
#define VERSION_MAJOR 0
#define VERSION_MINOR 92
#define VERSION_PATCH 1
#define VERSION "0.92.1"
#define VERSION_MINOR 93
#define VERSION_PATCH 0
#define VERSION "0.93.0"
namespace musik {
namespace cube {
static inline std::string userAgent() {

Binary file not shown.