From c62eeb4fcbb0d2602329db10e8649091bbd20f96 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sun, 26 Sep 2021 09:26:38 -0400 Subject: [PATCH] v0.4.1 --- CHANGELOG.md | 3 +++ Cargo.lock | 8 ++++---- cli/Cargo.toml | 2 +- replica-server-tests/Cargo.toml | 2 +- sync-server/Cargo.toml | 2 +- taskchampion/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c5baacae..91a692b5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ Note: unreleased change log entries are kept in `.changelogs/` directory in repo root, and can be added with `./script/changelog.py add "Added thing for reason" +## 0.4.1 - 2021-09-24 +- Fix for the build process to include the serde feature "derive". 0.4.0 could not be published to crates.io due to this bug. + ## 0.4.0 - 2021-09-25 - Breaking: Removed the KV based storage backend in client and server, and replaced with SQLite ([Issue #131](https://github.com/taskchampion/taskchampion/issues/131), [PR #206](https://github.com/taskchampion/taskchampion/pull/206)) diff --git a/Cargo.lock b/Cargo.lock index 2fe3ee1b6..3c454db59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2422,7 +2422,7 @@ dependencies = [ [[package]] name = "replica-server-tests" -version = "0.4.0" +version = "0.4.1" dependencies = [ "actix-rt", "actix-web", @@ -2911,7 +2911,7 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "taskchampion" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "chrono", @@ -2932,7 +2932,7 @@ dependencies = [ [[package]] name = "taskchampion-cli" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "assert_cmd", @@ -2962,7 +2962,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server" -version = "0.4.0" +version = "0.4.1" dependencies = [ "actix-rt", "actix-web", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 19d8c777f..1bd72c7b6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Dustin J. Mitchell "] edition = "2018" name = "taskchampion-cli" -version = "0.4.0" +version = "0.4.1" build = "build.rs" diff --git a/replica-server-tests/Cargo.toml b/replica-server-tests/Cargo.toml index 494dc69c7..0287c8d74 100644 --- a/replica-server-tests/Cargo.toml +++ b/replica-server-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "replica-server-tests" -version = "0.4.0" +version = "0.4.1" authors = ["Dustin J. Mitchell "] edition = "2018" publish = false diff --git a/sync-server/Cargo.toml b/sync-server/Cargo.toml index 7e35f1030..b26a738d1 100644 --- a/sync-server/Cargo.toml +++ b/sync-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server" -version = "0.4.0" +version = "0.4.1" authors = ["Dustin J. Mitchell "] edition = "2018" publish = false diff --git a/taskchampion/Cargo.toml b/taskchampion/Cargo.toml index 5c612ae86..63ddd142f 100644 --- a/taskchampion/Cargo.toml +++ b/taskchampion/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion" -version = "0.4.0" +version = "0.4.1" authors = ["Dustin J. Mitchell "] description = "Personal task-tracking" homepage = "https://taskchampion.github.io/taskchampion/"