Skip to content

Commit d206729

Browse files
committed
v0.7.1
1 parent bf19b76 commit d206729

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "taskchampion-sync-server-core"
3-
version = "0.7.1-pre"
3+
version = "0.7.1"
44
authors = ["Dustin J. Mitchell <[email protected]>"]
55
edition = "2021"
66
description = "Core of sync protocol for TaskChampion"

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ services:
4343
condition: service_completed_successfully
4444

4545
tss:
46-
image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.7.0
46+
image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:0.7.1
4747
restart: unless-stopped
4848
environment:
4949
- "RUST_LOG=info"

docs/src/usage/docker-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Docker Compose
22

33
The
4-
[`docker-compose.yml`](https://raw.githubusercontent.com/GothenburgBitFactory/taskchampion-sync-server/refs/tags/v0.7.0/docker-compose.yml)
4+
[`docker-compose.yml`](https://raw.githubusercontent.com/GothenburgBitFactory/taskchampion-sync-server/refs/tags/v0.7.1/docker-compose.yml)
55
file in this repository is sufficient to run taskchampion-sync-server,
66
including setting up TLS certificates using Lets Encrypt, thanks to
77
[Caddy](https://caddyserver.com/). This setup uses the SQLite backend, which is

postgres/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "taskchampion-sync-server-storage-postgres"
3-
version = "0.7.1-pre"
3+
version = "0.7.1"
44
authors = ["Dustin J. Mitchell <[email protected]>"]
55
edition = "2021"
66
description = "Postgres backend for TaskChampion-sync-server"
@@ -16,7 +16,7 @@ bb8.workspace = true
1616
chrono.workspace = true
1717
env_logger.workspace = true
1818
log.workspace = true
19-
taskchampion-sync-server-core = { path = "../core", version = "0.7.1-pre" }
19+
taskchampion-sync-server-core = { path = "../core", version = "0.7.1" }
2020
thiserror.workspace = true
2121
tokio-postgres.workspace = true
2222
tokio.workspace = true

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "taskchampion-sync-server"
3-
version = "0.7.1-pre"
3+
version = "0.7.1"
44
authors = ["Dustin J. Mitchell <[email protected]>"]
55
edition = "2021"
66
publish = false

sqlite/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "taskchampion-sync-server-storage-sqlite"
3-
version = "0.7.1-pre"
3+
version = "0.7.1"
44
authors = ["Dustin J. Mitchell <[email protected]>"]
55
edition = "2021"
66
description = "SQLite backend for TaskChampion-sync-server"
@@ -9,7 +9,7 @@ repository = "https://github.com/GothenburgBitFactory/taskchampion-sync-server"
99
license = "MIT"
1010

1111
[dependencies]
12-
taskchampion-sync-server-core = { path = "../core", version = "0.7.1-pre" }
12+
taskchampion-sync-server-core = { path = "../core", version = "0.7.1" }
1313
async-trait.workspace = true
1414
uuid.workspace = true
1515
anyhow.workspace = true

0 commit comments

Comments
 (0)