From d206729d5ea7421d501b60111a7b40ecc2ddb87f Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sat, 11 Oct 2025 18:57:23 +0000 Subject: [PATCH] v0.7.1 --- Cargo.lock | 8 ++++---- core/Cargo.toml | 2 +- docker-compose.yml | 2 +- docs/src/usage/docker-compose.md | 2 +- postgres/Cargo.toml | 4 ++-- server/Cargo.toml | 2 +- sqlite/Cargo.toml | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fbb7705..3771ab2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1859,7 +1859,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server" -version = "0.7.1-pre" +version = "0.7.1" dependencies = [ "actix-rt", "actix-web", @@ -1883,7 +1883,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-core" -version = "0.7.1-pre" +version = "0.7.1" dependencies = [ "anyhow", "async-trait", @@ -1898,7 +1898,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-storage-postgres" -version = "0.7.1-pre" +version = "0.7.1" dependencies = [ "anyhow", "async-trait", @@ -1921,7 +1921,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-storage-sqlite" -version = "0.7.1-pre" +version = "0.7.1" dependencies = [ "anyhow", "async-trait", diff --git a/core/Cargo.toml b/core/Cargo.toml index aa37f01..d8a55b3 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-core" -version = "0.7.1-pre" +version = "0.7.1" authors = ["Dustin J. Mitchell "] edition = "2021" description = "Core of sync protocol for TaskChampion" diff --git a/docker-compose.yml b/docker-compose.yml index 5add3a6..fc2a4c8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -43,7 +43,7 @@ services: condition: service_completed_successfully tss: - image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.7.0 + image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.7.1 restart: unless-stopped environment: - "RUST_LOG=info" diff --git a/docs/src/usage/docker-compose.md b/docs/src/usage/docker-compose.md index e1c14a9..edccf0c 100644 --- a/docs/src/usage/docker-compose.md +++ b/docs/src/usage/docker-compose.md @@ -1,7 +1,7 @@ # Docker Compose The -[`docker-compose.yml`](https://raw.githubusercontent.com/GothenburgBitFactory/taskchampion-sync-server/refs/tags/v0.7.0/docker-compose.yml) +[`docker-compose.yml`](https://raw.githubusercontent.com/GothenburgBitFactory/taskchampion-sync-server/refs/tags/v0.7.1/docker-compose.yml) file in this repository is sufficient to run taskchampion-sync-server, including setting up TLS certificates using Lets Encrypt, thanks to [Caddy](https://caddyserver.com/). This setup uses the SQLite backend, which is diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 36fc175..52db97e 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-storage-postgres" -version = "0.7.1-pre" +version = "0.7.1" authors = ["Dustin J. Mitchell "] edition = "2021" description = "Postgres backend for TaskChampion-sync-server" @@ -16,7 +16,7 @@ bb8.workspace = true chrono.workspace = true env_logger.workspace = true log.workspace = true -taskchampion-sync-server-core = { path = "../core", version = "0.7.1-pre" } +taskchampion-sync-server-core = { path = "../core", version = "0.7.1" } thiserror.workspace = true tokio-postgres.workspace = true tokio.workspace = true diff --git a/server/Cargo.toml b/server/Cargo.toml index c416665..58565df 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server" -version = "0.7.1-pre" +version = "0.7.1" authors = ["Dustin J. Mitchell "] edition = "2021" publish = false diff --git a/sqlite/Cargo.toml b/sqlite/Cargo.toml index ea9e8bf..ff38a99 100644 --- a/sqlite/Cargo.toml +++ b/sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-storage-sqlite" -version = "0.7.1-pre" +version = "0.7.1" authors = ["Dustin J. Mitchell "] edition = "2021" description = "SQLite backend for TaskChampion-sync-server" @@ -9,7 +9,7 @@ repository = "https://github.com/GothenburgBitFactory/taskchampion-sync-server" license = "MIT" [dependencies] -taskchampion-sync-server-core = { path = "../core", version = "0.7.1-pre" } +taskchampion-sync-server-core = { path = "../core", version = "0.7.1" } async-trait.workspace = true uuid.workspace = true anyhow.workspace = true