From 093446e5fb3877ac2dfdf7bb363b3d60f7034243 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sat, 12 Jul 2025 15:21:30 -0400 Subject: [PATCH] bump major version --- Cargo.lock | 6 +++--- core/Cargo.toml | 2 +- server/Cargo.toml | 2 +- sqlite/Cargo.toml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7fcd435..f96e478 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1573,7 +1573,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server" -version = "0.6.2-pre" +version = "0.7.0-pre" dependencies = [ "actix-rt", "actix-web", @@ -1596,7 +1596,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-core" -version = "0.6.2-pre" +version = "0.7.0-pre" dependencies = [ "anyhow", "async-trait", @@ -1611,7 +1611,7 @@ dependencies = [ [[package]] name = "taskchampion-sync-server-storage-sqlite" -version = "0.6.2-pre" +version = "0.7.0-pre" dependencies = [ "anyhow", "async-trait", diff --git a/core/Cargo.toml b/core/Cargo.toml index 1917b31..68b9adf 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-core" -version = "0.6.2-pre" +version = "0.7.0-pre" authors = ["Dustin J. Mitchell "] edition = "2021" description = "Core of sync protocol for TaskChampion" diff --git a/server/Cargo.toml b/server/Cargo.toml index 9aea205..6c9d2fb 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server" -version = "0.6.2-pre" +version = "0.7.0-pre" authors = ["Dustin J. Mitchell "] edition = "2021" publish = false diff --git a/sqlite/Cargo.toml b/sqlite/Cargo.toml index 1fe1e7a..c3c03d0 100644 --- a/sqlite/Cargo.toml +++ b/sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion-sync-server-storage-sqlite" -version = "0.6.2-pre" +version = "0.7.0-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.6.2-pre" } +taskchampion-sync-server-core = { path = "../core", version = "0.7.0-pre" } async-trait.workspace = true uuid.workspace = true anyhow.workspace = true