diff --git a/Cargo.lock b/Cargo.lock index 82c5e2a..2d5e47a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1570,7 +1570,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server" -version = "0.6.1-pre" +version = "0.6.1" dependencies = [ "actix-rt", "actix-web", @@ -1593,7 +1593,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-core" -version = "0.6.1-pre" +version = "0.6.1" dependencies = [ "anyhow", "chrono", @@ -1606,7 +1606,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-storage-sqlite" -version = "0.6.1-pre" +version = "0.6.1" dependencies = [ "anyhow", "chrono", diff --git a/README.md b/README.md index bc82ae8..0c4d0bc 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Every release of the server generates a Docker image in and `0.5.1`. The -[`docker-compose.yml`](https://raw.githubusercontent.com/GothenburgBitFactory/taskchampion-sync-server/refs/tags/v0.6.0/docker-compose.yml) +[`docker-compose.yml`](https://raw.githubusercontent.com/GothenburgBitFactory/taskchampion-sync-server/refs/tags/v0.6.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/). diff --git a/core/Cargo.toml b/core/Cargo.toml index 12069b5..41737eb 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-core" -version = "0.6.1-pre" +version = "0.6.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 224e51a..5b45098 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.6.0 + image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.6.1 restart: unless-stopped environment: - "RUST_LOG=info" diff --git a/server/Cargo.toml b/server/Cargo.toml index 5001c40..fed49fe 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server" -version = "0.6.1-pre" +version = "0.6.1" authors = ["Dustin J. Mitchell "] edition = "2021" publish = false diff --git a/sqlite/Cargo.toml b/sqlite/Cargo.toml index 178c1b8..5c8431b 100644 --- a/sqlite/Cargo.toml +++ b/sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-storage-sqlite" -version = "0.6.1-pre" +version = "0.6.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.6.1-pre" } +taskchampion-sync-server-core = { path = "../core", version = "0.6.1" } uuid.workspace = true anyhow.workspace = true thiserror.workspace = true