This commit is contained in:
Dustin J. Mitchell 2025-03-01 18:16:48 +00:00
parent 65ad035d8d
commit 5c3455a38a
No known key found for this signature in database
6 changed files with 9 additions and 9 deletions

6
Cargo.lock generated
View file

@ -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",

View file

@ -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/).

View file

@ -1,6 +1,6 @@
[package]
name = "taskchampion-sync-server-core"
version = "0.5.1-pre"
version = "0.6.0"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2021"
description = "Core of sync protocol for TaskChampion"

View file

@ -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"

View file

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

View file

@ -1,13 +1,13 @@
[package]
name = "taskchampion-sync-server-storage-sqlite"
version = "0.5.1-pre"
version = "0.6.0"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
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