diff --git a/Cargo.lock b/Cargo.lock index f36c055..41ba68c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1570,7 +1570,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server" -version = "0.5.1-pre" +version = "0.6.0" dependencies = [ "actix-rt", "actix-web", @@ -1593,7 +1593,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-core" -version = "0.5.1-pre" +version = "0.6.0" dependencies = [ "anyhow", "chrono", @@ -1606,7 +1606,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-storage-sqlite" -version = "0.5.1-pre" +version = "0.6.0" dependencies = [ "anyhow", "chrono", diff --git a/README.md b/README.md index d964f79..d3d4ffd 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.5.0/docker-compose.yml) +[`docker-compose.yml`](https://raw.githubusercontent.com/GothenburgBitFactory/taskchampion-sync-server/refs/tags/v0.6.0/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 dd2caeb..8cfca18 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-core" -version = "0.5.1-pre" +version = "0.6.0" authors = ["Dustin J. Mitchell "] edition = "2021" description = "Core of sync protocol for TaskChampion" diff --git a/docker-compose.yml b/docker-compose.yml index fa474db..43a9b9f 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.5.0 + image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.6.0 restart: unless-stopped environment: - "RUST_LOG=info" diff --git a/server/Cargo.toml b/server/Cargo.toml index fc7b53a..434626c 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server" -version = "0.5.1-pre" +version = "0.6.0" authors = ["Dustin J. Mitchell "] edition = "2021" publish = false diff --git a/sqlite/Cargo.toml b/sqlite/Cargo.toml index c082cf0..c806e7c 100644 --- a/sqlite/Cargo.toml +++ b/sqlite/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "taskchampion-sync-server-storage-sqlite" -version = "0.5.1-pre" +version = "0.6.0" authors = ["Dustin J. Mitchell "] edition = "2021" description = "SQLite backend for TaskChampion-sync-server" license = "MIT" [dependencies] -taskchampion-sync-server-core = { path = "../core", version = "0.5.1-pre" } +taskchampion-sync-server-core = { path = "../core", version = "0.6.0" } uuid.workspace = true anyhow.workspace = true thiserror.workspace = true