From ae9adf1572deb876b1d8706a165d7eb1e0667b41 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 30 Jul 2025 21:23:03 -0400 Subject: [PATCH 1/3] Bump to -pre version --- Cargo.lock | 8 ++++---- core/Cargo.toml | 2 +- postgres/Cargo.toml | 4 ++-- server/Cargo.toml | 2 +- sqlite/Cargo.toml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22d0c04..f974199 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/core/Cargo.toml b/core/Cargo.toml index e97677b..aa37f01 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-core" -version = "0.7.0" +version = "0.7.1-pre" authors = ["Dustin J. Mitchell "] edition = "2021" description = "Core of sync protocol for TaskChampion" diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 4ac91ff..36fc175 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-storage-postgres" -version = "0.7.0" +version = "0.7.1-pre" authors = ["Dustin J. Mitchell "] 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 diff --git a/server/Cargo.toml b/server/Cargo.toml index 70d207d..c416665 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server" -version = "0.7.0" +version = "0.7.1-pre" authors = ["Dustin J. Mitchell "] edition = "2021" publish = false diff --git a/sqlite/Cargo.toml b/sqlite/Cargo.toml index 4744e01..ea9e8bf 100644 --- a/sqlite/Cargo.toml +++ b/sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-storage-sqlite" -version = "0.7.0" +version = "0.7.1-pre" authors = ["Dustin J. Mitchell "] 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 From 624efa8b0dc576bfdffd7405a6cf065e2861a60f Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 30 Jul 2025 21:23:53 -0400 Subject: [PATCH 2/3] stop excluding the postgres crate --- .github/workflows/checks.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index c98ede9..35d2ad0 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -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 From a94be2649eccef0d903de2a136a86849b05b1ef3 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 30 Jul 2025 21:32:27 -0400 Subject: [PATCH 3/3] Use correct option to docker/build-push-action for Dockerfiles --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f992b29..fff28a1 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -34,7 +34,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - path: "{context}/Dockerfile-sqlite" + file: "{context}/Dockerfile-sqlite" platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta-sqlite.outputs.tags }} @@ -65,7 +65,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - path: "{context}/Dockerfile-postgres" + file: "{context}/Dockerfile-postgres" platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta-postgres.outputs.tags }}