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]] [[package]]
name = "taskchampion-sync-server" name = "taskchampion-sync-server"
version = "0.5.1-pre" version = "0.6.0"
dependencies = [ dependencies = [
"actix-rt", "actix-rt",
"actix-web", "actix-web",
@ -1593,7 +1593,7 @@ dependencies = [
[[package]] [[package]]
name = "taskchampion-sync-server-core" name = "taskchampion-sync-server-core"
version = "0.5.1-pre" version = "0.6.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",
@ -1606,7 +1606,7 @@ dependencies = [
[[package]] [[package]]
name = "taskchampion-sync-server-storage-sqlite" name = "taskchampion-sync-server-storage-sqlite"
version = "0.5.1-pre" version = "0.6.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

View file

@ -33,7 +33,7 @@ Every release of the server generates a Docker image in
and `0.5.1`. and `0.5.1`.
The 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, file in this repository is sufficient to run taskchampion-sync-server,
including setting up TLS certificates using Lets Encrypt, thanks to including setting up TLS certificates using Lets Encrypt, thanks to
[Caddy](https://caddyserver.com/). [Caddy](https://caddyserver.com/).

View file

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

View file

@ -43,7 +43,7 @@ services:
condition: service_completed_successfully condition: service_completed_successfully
tss: tss:
image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.5.0 image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.6.0
restart: unless-stopped restart: unless-stopped
environment: environment:
- "RUST_LOG=info" - "RUST_LOG=info"

View file

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

View file

@ -1,13 +1,13 @@
[package] [package]
name = "taskchampion-sync-server-storage-sqlite" name = "taskchampion-sync-server-storage-sqlite"
version = "0.5.1-pre" version = "0.6.0"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"] authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2021" edition = "2021"
description = "SQLite backend for TaskChampion-sync-server" description = "SQLite backend for TaskChampion-sync-server"
license = "MIT" license = "MIT"
[dependencies] [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 uuid.workspace = true
anyhow.workspace = true anyhow.workspace = true
thiserror.workspace = true thiserror.workspace = true