Merge post-0.7.0-release updates into main

This commit is contained in:
Dustin J. Mitchell
2025-07-30 22:40:11 -04:00
6 changed files with 11 additions and 12 deletions

View File

@ -118,8 +118,7 @@ jobs:
- uses: obi1kenobi/cargo-semver-checks-action@v2
with:
# exclude the binary package from semver checks, since it is not published as a crate.
# exclude postgres temporarily until it is released
exclude: taskchampion-sync-server,taskchampion-sync-server-storage-postgres
exclude: taskchampion-sync-server
mdbook:
runs-on: ubuntu-latest

8
Cargo.lock generated
View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "taskchampion-sync-server-storage-sqlite"
version = "0.7.0"
version = "0.7.1-pre"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2021"
description = "SQLite backend for TaskChampion-sync-server"
@ -9,7 +9,7 @@ repository = "https://github.com/GothenburgBitFactory/taskchampion-sync-server"
license = "MIT"
[dependencies]
taskchampion-sync-server-core = { path = "../core", version = "0.7.0" }
taskchampion-sync-server-core = { path = "../core", version = "0.7.1-pre" }
async-trait.workspace = true
uuid.workspace = true
anyhow.workspace = true