This commit is contained in:
Dustin J. Mitchell 2021-09-25 23:42:16 +00:00
parent b1b17310e6
commit fe7d421c21
7 changed files with 11 additions and 9 deletions

View file

@ -1 +0,0 @@
- 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))

View file

@ -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.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))
## 0.3.0 - 2021-01-11
- Flexible named reports
- Updates to the TaskChampion crate API

8
Cargo.lock generated
View file

@ -2422,7 +2422,7 @@ dependencies = [
[[package]]
name = "replica-server-tests"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"actix-rt",
"actix-web",
@ -2911,7 +2911,7 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]]
name = "taskchampion"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"anyhow",
"chrono",
@ -2932,7 +2932,7 @@ dependencies = [
[[package]]
name = "taskchampion-cli"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"anyhow",
"assert_cmd",
@ -2962,7 +2962,7 @@ dependencies = [
[[package]]
name = "taskchampion-sync-server"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"actix-rt",
"actix-web",

View file

@ -2,7 +2,7 @@
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2018"
name = "taskchampion-cli"
version = "0.3.0"
version = "0.4.0"
build = "build.rs"

View file

@ -1,6 +1,6 @@
[package]
name = "replica-server-tests"
version = "0.3.0"
version = "0.4.0"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2018"
publish = false

View file

@ -1,6 +1,6 @@
[package]
name = "taskchampion-sync-server"
version = "0.3.0"
version = "0.4.0"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2018"
publish = false

View file

@ -1,6 +1,6 @@
[package]
name = "taskchampion"
version = "0.3.0"
version = "0.4.0"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
description = "Personal task-tracking"
homepage = "https://taskchampion.github.io/taskchampion/"