From 14ec1d1d10c0a791788a0c1ecd96b27c87546926 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Fri, 21 Aug 2009 00:27:20 +0200 Subject: [PATCH] Changed version number to 0.4.90 As discussed in IRC, we're going to insert another release series (0.5.x) between 0.4.x and 1.0 so users do not have to wait for cool new features (such as Resource framework, automation recording etc.) until things like SongEditorNG are finished. A new stable series also has the advantage of less maintainance work because we can simply pull the stable branch into master branch for bug fixes (instead of cherry-picking commits from master to stable). Decreasing version number shouldn't have a functional impact as the file format hasn't changed since 0.4.0. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fbfa733b..f46c8b342 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ INCLUDE(CheckLibraryExists) INCLUDE(FindPkgConfig) SET(VERSION_MAJOR "0") -SET(VERSION_MINOR "9") -SET(VERSION_PATCH "0") +SET(VERSION_MINOR "4") +SET(VERSION_PATCH "90") #SET(VERSION_SUFFIX "") IF(NOT VERSION_SUFFIX) IF(EXISTS ${CMAKE_SOURCE_DIR}/.svn)