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 - uses: obi1kenobi/cargo-semver-checks-action@v2
with: with:
# exclude the binary package from semver checks, since it is not published as a crate. # 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
exclude: taskchampion-sync-server,taskchampion-sync-server-storage-postgres
mdbook: mdbook:
runs-on: ubuntu-latest runs-on: ubuntu-latest

8
Cargo.lock generated
View File

@ -1859,7 +1859,7 @@ dependencies = [
[[package]] [[package]]
name = "taskchampion-sync-server" name = "taskchampion-sync-server"
version = "0.7.0" version = "0.7.1-pre"
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.0" version = "0.7.1-pre"
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.0" version = "0.7.1-pre"
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.0" version = "0.7.1-pre"
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.0" version = "0.7.1-pre"
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

@ -1,6 +1,6 @@
[package] [package]
name = "taskchampion-sync-server-storage-postgres" name = "taskchampion-sync-server-storage-postgres"
version = "0.7.0" version = "0.7.1-pre"
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.0" } taskchampion-sync-server-core = { path = "../core", version = "0.7.1-pre" }
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.0" version = "0.7.1-pre"
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.0" version = "0.7.1-pre"
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.0" } taskchampion-sync-server-core = { path = "../core", version = "0.7.1-pre" }
async-trait.workspace = true async-trait.workspace = true
uuid.workspace = true uuid.workspace = true
anyhow.workspace = true anyhow.workspace = true