From 06c6b94fd4a78dcd52f0df883eb373f714c4ce70 Mon Sep 17 00:00:00 2001 From: Federico Hernandez Date: Mon, 7 Sep 2015 22:54:17 +0200 Subject: [PATCH] Renamed 2.4.5 to 2.5.0 --- CMakeLists.txt | 2 +- ChangeLog | 2 +- DEVELOPER | 6 +++--- NEWS | 10 +++++----- src/legacy.cpp | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index db446e860..23a2cea75 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ include (CheckStructHasMember) set (HAVE_CMAKE true) project (task) -set (PROJECT_VERSION "2.4.5") +set (PROJECT_VERSION "2.5.0.beta1") OPTION (ENABLE_SYNC "Enable 'task sync' support" ON) diff --git a/ChangeLog b/ChangeLog index 529115cce..a00d25a5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -2.4.5 () - +2.5.0 () - - TW-20 Task edit loses annotation precision, causing journal updating code to incorrectly indicate annotions are deleted and recreated (thanks diff --git a/DEVELOPER b/DEVELOPER index 05b395aeb..6af9d9631 100644 --- a/DEVELOPER +++ b/DEVELOPER @@ -10,7 +10,7 @@ How to Build Taskwarrior Obtain and build code: $ git clone https://git.tasktools.org/scm/tm/task.git task.git $ cd task.git - $ git checkout 2.4.5 # Latest dev branch + $ git checkout 2.5.0 # Latest dev branch $ cmake -DCMAKE_BUILD_TYPE=debug . # debug or release. Default: neither. $ make VERBOSE=1 # Shows details @@ -160,9 +160,9 @@ Current Codebase Condition 'master' branch: - 2.4.4 Current release, locked. - '2.4.5' branch: + '2.5.0' branch: - Current development branch no plans yet. --- -2015-08-14 Updated for 2.4.5 +2015-09-07 Updated for 2.5.0 diff --git a/NEWS b/NEWS index 83af97dd3..f7fd04dfc 100644 --- a/NEWS +++ b/NEWS @@ -1,18 +1,18 @@ -New Features in Taskwarrior 2.4.5 +New Features in Taskwarrior 2.5.0 - The active context, if one is set, is now identified in "task context list" - It is an error to attempt adding or removing a virtual tag. - New 'UDA', 'ORPHAN', 'PROJECT', 'PRIORITY' and 'LATEST' virtual tags. -New commands in Taskwarrior 2.4.5 +New commands in Taskwarrior 2.5.0 - The '_unique' command shows a set of unique values for the specified attribute - The 'commands' command shows the supported commands, with additional details that determine some of their behavior. -New configuration options in Taskwarrior 2.4.5 +New configuration options in Taskwarrior 2.5.0 - The 'json.depends.array' setting controls whether dependencies are exported as a JSON array, of a comma-separated string. Default is 'on'. @@ -29,13 +29,13 @@ New configuration options in Taskwarrior 2.4.5 produced by different color rules. Use if your color scheme produces unpleasing foreground and background combinations. -Newly deprecated features in Taskwarrior 2.4.5 +Newly deprecated features in Taskwarrior 2.5.0 - The '_ids', '_projects', '_tags', '_uuids' helper commands are deprecated, and replaced by the new '_unique' helper command. - Comma-separated ID lists are deprecated. -Removed features in 2.4.5 +Removed features in 2.5.0 - The script 'context' was removed, now that context is a core feature. - Non­extended forms of ISO-8601 date/time support is removed. This means diff --git a/src/legacy.cpp b/src/legacy.cpp index a0265961e..91b3cf3af 100644 --- a/src/legacy.cpp +++ b/src/legacy.cpp @@ -126,7 +126,7 @@ std::string legacyCheckForDeprecatedVariables () if (it.first == "alias._query") deprecated.push_back (it.first); - // Deprecated in 2.4.5. + // Deprecated in 2.5.0. if (it.first == "urgency.inherit.coefficient") deprecated.push_back (it.first); }