This commit is contained in:
Dustin J. Mitchell
2025-10-11 18:57:23 +00:00
parent bf19b76577
commit d206729d5e
7 changed files with 12 additions and 12 deletions

8
Cargo.lock generated
View File

@ -1859,7 +1859,7 @@ dependencies = [
[[package]] [[package]]
name = "taskchampion-sync-server" name = "taskchampion-sync-server"
version = "0.7.1-pre" version = "0.7.1"
dependencies = [ dependencies = [
"actix-rt", "actix-rt",
"actix-web", "actix-web",
@ -1883,7 +1883,7 @@ dependencies = [
[[package]] [[package]]
name = "taskchampion-sync-server-core" name = "taskchampion-sync-server-core"
version = "0.7.1-pre" version = "0.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",
@ -1898,7 +1898,7 @@ dependencies = [
[[package]] [[package]]
name = "taskchampion-sync-server-storage-postgres" name = "taskchampion-sync-server-storage-postgres"
version = "0.7.1-pre" version = "0.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",
@ -1921,7 +1921,7 @@ dependencies = [
[[package]] [[package]]
name = "taskchampion-sync-server-storage-sqlite" name = "taskchampion-sync-server-storage-sqlite"
version = "0.7.1-pre" version = "0.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "taskchampion-sync-server-core" name = "taskchampion-sync-server-core"
version = "0.7.1-pre" version = "0.7.1"
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.7.0 image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.7.1
restart: unless-stopped restart: unless-stopped
environment: environment:
- "RUST_LOG=info" - "RUST_LOG=info"

View File

@ -1,7 +1,7 @@
# Docker Compose # Docker Compose
The 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, 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/). This setup uses the SQLite backend, which is [Caddy](https://caddyserver.com/). This setup uses the SQLite backend, which is

View File

@ -1,6 +1,6 @@
[package] [package]
name = "taskchampion-sync-server-storage-postgres" name = "taskchampion-sync-server-storage-postgres"
version = "0.7.1-pre" version = "0.7.1"
authors = ["Dustin J. Mitchell <dustin@v.igoro.us>"] authors = ["Dustin J. Mitchell <dustin@v.igoro.us>"]
edition = "2021" edition = "2021"
description = "Postgres backend for TaskChampion-sync-server" description = "Postgres backend for TaskChampion-sync-server"
@ -16,7 +16,7 @@ bb8.workspace = true
chrono.workspace = true chrono.workspace = true
env_logger.workspace = true env_logger.workspace = true
log.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 thiserror.workspace = true
tokio-postgres.workspace = true tokio-postgres.workspace = true
tokio.workspace = true tokio.workspace = true

View File

@ -1,6 +1,6 @@
[package] [package]
name = "taskchampion-sync-server" name = "taskchampion-sync-server"
version = "0.7.1-pre" version = "0.7.1"
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,6 +1,6 @@
[package] [package]
name = "taskchampion-sync-server-storage-sqlite" name = "taskchampion-sync-server-storage-sqlite"
version = "0.7.1-pre" version = "0.7.1"
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"
@ -9,7 +9,7 @@ repository = "https://github.com/GothenburgBitFactory/taskchampion-sync-server"
license = "MIT" license = "MIT"
[dependencies] [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 async-trait.workspace = true
uuid.workspace = true uuid.workspace = true
anyhow.workspace = true anyhow.workspace = true