mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-07 21:07:20 +02:00
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>
This commit is contained in:
parent
dcbe916286
commit
1ee69ea214
4 changed files with 37 additions and 3 deletions
|
@ -159,6 +159,7 @@ std::vector<NewsItem> NewsItem::all() {
|
|||
version3_0_0(items);
|
||||
version3_1_0(items);
|
||||
version3_2_0(items);
|
||||
version3_3_0(items);
|
||||
return items;
|
||||
}
|
||||
|
||||
|
@ -515,6 +516,20 @@ void NewsItem::version3_2_0(std::vector<NewsItem>& items) {
|
|||
items.push_back(info);
|
||||
}
|
||||
|
||||
void NewsItem::version3_3_0(std::vector<NewsItem>& items) {
|
||||
Version version("3.3.0");
|
||||
NewsItem info{
|
||||
version,
|
||||
/*title=*/"AWS S3 Sync",
|
||||
/*bg_title=*/"",
|
||||
/*background=*/"",
|
||||
/*punchline=*/"Use an AWS S3 bucket to sync Taskwarrior",
|
||||
/*update=*/
|
||||
"Taskwarrior now supports AWS as a backend for sync, in addition to existing support\n"
|
||||
"for GCP and taskchampion-sync-server. See `man task-sync` for details.\n\n"};
|
||||
items.push_back(info);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdNews::execute(std::string& output) {
|
||||
auto words = Context::getContext().cli2.getWords();
|
||||
|
|
|
@ -52,6 +52,7 @@ class NewsItem {
|
|||
static void version3_0_0(std::vector<NewsItem>&);
|
||||
static void version3_1_0(std::vector<NewsItem>&);
|
||||
static void version3_2_0(std::vector<NewsItem>&);
|
||||
static void version3_3_0(std::vector<NewsItem>&);
|
||||
|
||||
private:
|
||||
NewsItem(Version, const std::string&, const std::string& = "", const std::string& = "",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue