Skip to content

Commit 7a092be

Browse files
authored
Release v3.2.0 (#3679)
1 parent 54a94bd commit 7a092be

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enable_testing()
44
set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
55

66
project (task
7-
VERSION 3.1.0
7+
VERSION 3.2.0
88
DESCRIPTION "Taskwarrior - a command-line TODO list manager"
99
HOMEPAGE_URL https://taskwarrior.org/)
1010

ChangeLog

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
------ current release ---------------------------
22

3+
3.2.0 -
4+
5+
- Support for the journal in `task info` has been restored (#3671) and the
6+
task info output no longer contains `tag_` values (#3619).
7+
- The `rc.weekstart` value now affects calculation of week numbers in
8+
expressions like `2013-W49` (#2654).
9+
- Build-time flag `ENABLE_TLS_NATIVE_ROOTS` will cause `task sync` to use the
10+
system TLS roots instead of its built-in roots to authenticate the server (#3660).
11+
- The output from `task undo` is now more human-readable. The `undo.style`
12+
configuraiton option, which has had no effect since 3.0.0, is now removed (3672).
13+
- Fetching pending tasks is now more efficient (#3661).
14+
15+
Thanks to the following people for contributions to this release:
16+
17+
- Denis Zh.
18+
- Dustin J. Mitchell
19+
- Fredrik Lanker
20+
- Gagan Nagaraj
21+
- Jan Christian Grünhage
22+
- Scott Mcdermott
23+
- Thomas Lauf
24+
- Tobias Predel
25+
26+
------ old releases ------------------------------
27+
328
3.1.0 -
429

530
- Support for `task purge` has been restored, and new support added for automatically
@@ -35,8 +60,6 @@ Thanks to the following people for contributions to this release:
3560
- Steve Dondley
3661
- Will R S Hansen
3762

38-
------ old releases ------------------------------
39-
4063
3.0.2 -
4164

4265
- Fix an accidentally-included debug print which polluted output of

src/commands/CmdNews.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ std::vector<NewsItem> NewsItem::all() {
158158
version2_6_0(items);
159159
version3_0_0(items);
160160
version3_1_0(items);
161+
version3_2_0(items);
161162
return items;
162163
}
163164

@@ -500,6 +501,20 @@ void NewsItem::version3_1_0(std::vector<NewsItem>& items) {
500501
items.push_back(news);
501502
}
502503

504+
void NewsItem::version3_2_0(std::vector<NewsItem>& items) {
505+
Version version("3.2.0");
506+
NewsItem info{
507+
version,
508+
/*title=*/"`task info` Journal Restored",
509+
/*bg_title=*/"",
510+
/*background=*/"",
511+
/*punchline=*/"",
512+
/*update=*/
513+
"Support for the \"journal\" output in `task info` has been restored. The command now\n"
514+
"displays a list of changes made to the task, with timestamps.\n\n"};
515+
items.push_back(info);
516+
}
517+
503518
////////////////////////////////////////////////////////////////////////////////
504519
int CmdNews::execute(std::string& output) {
505520
auto words = Context::getContext().cli2.getWords();

src/commands/CmdNews.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ class NewsItem {
5151
static void version2_6_0(std::vector<NewsItem>&);
5252
static void version3_0_0(std::vector<NewsItem>&);
5353
static void version3_1_0(std::vector<NewsItem>&);
54+
static void version3_2_0(std::vector<NewsItem>&);
5455

5556
private:
5657
NewsItem(Version, const std::string&, const std::string& = "", const std::string& = "",

0 commit comments

Comments
 (0)