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:
Dustin J. Mitchell 2024-12-19 10:57:43 -05:00 committed by GitHub
parent dcbe916286
commit 1ee69ea214
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 37 additions and 3 deletions

View file

@ -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();

View file

@ -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& = "",