Skip to content

Commit 1ee69ea

Browse files
Release 3.3.0 (#3729)
* Release 3.3.0 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent dcbe916 commit 1ee69ea

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-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.2.0
7+
VERSION 3.3.0
88
DESCRIPTION "Taskwarrior - a command-line TODO list manager"
99
HOMEPAGE_URL https://taskwarrior.org/)
1010

ChangeLog

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

3+
- Sync now supports AWS S3 as a backend.
4+
- A new `task import-v2` command allows importing Taskwarrior-2.x
5+
data files directly.
6+
7+
3.3.0 -
8+
9+
Thanks to the following people for contributions to this release:
10+
11+
- Chongyun Lee
12+
- David Tolnay
13+
- Dustin J. Mitchell
14+
- Felix Schurk
15+
- geoffpaulsen
16+
- Kalle Kietäväinen
17+
- Kursat Aktas
18+
- Scott Mcdermott
19+
- Thomas Lauf
20+
21+
------ old releases ------------------------------
22+
323
3.2.0 -
424

525
- Support for the journal in `task info` has been restored (#3671) and the
@@ -23,8 +43,6 @@ Thanks to the following people for contributions to this release:
2343
- Thomas Lauf
2444
- Tobias Predel
2545

26-
------ old releases ------------------------------
27-
2846
3.1.0 -
2947

3048
- Support for `task purge` has been restored, and new support added for automatically

src/commands/CmdNews.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ std::vector<NewsItem> NewsItem::all() {
159159
version3_0_0(items);
160160
version3_1_0(items);
161161
version3_2_0(items);
162+
version3_3_0(items);
162163
return items;
163164
}
164165

@@ -515,6 +516,20 @@ void NewsItem::version3_2_0(std::vector<NewsItem>& items) {
515516
items.push_back(info);
516517
}
517518

519+
void NewsItem::version3_3_0(std::vector<NewsItem>& items) {
520+
Version version("3.3.0");
521+
NewsItem info{
522+
version,
523+
/*title=*/"AWS S3 Sync",
524+
/*bg_title=*/"",
525+
/*background=*/"",
526+
/*punchline=*/"Use an AWS S3 bucket to sync Taskwarrior",
527+
/*update=*/
528+
"Taskwarrior now supports AWS as a backend for sync, in addition to existing support\n"
529+
"for GCP and taskchampion-sync-server. See `man task-sync` for details.\n\n"};
530+
items.push_back(info);
531+
}
532+
518533
////////////////////////////////////////////////////////////////////////////////
519534
int CmdNews::execute(std::string& output) {
520535
auto words = Context::getContext().cli2.getWords();

src/commands/CmdNews.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class NewsItem {
5252
static void version3_0_0(std::vector<NewsItem>&);
5353
static void version3_1_0(std::vector<NewsItem>&);
5454
static void version3_2_0(std::vector<NewsItem>&);
55+
static void version3_3_0(std::vector<NewsItem>&);
5556

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

0 commit comments

Comments
 (0)