Bump to -pre version

This commit is contained in:
Dustin J. Mitchell 2025-03-01 18:21:09 +00:00
parent 5c3455a38a
commit 55892d3b2d
No known key found for this signature in database
4 changed files with 7 additions and 7 deletions

6
Cargo.lock generated
View file

@ -1570,7 +1570,7 @@ dependencies = [
[[package]]
name = "taskchampion-sync-server"
version = "0.6.0"
version = "0.6.1-pre"
dependencies = [
"actix-rt",
"actix-web",
@ -1593,7 +1593,7 @@ dependencies = [
[[package]]
name = "taskchampion-sync-server-core"
version = "0.6.0"
version = "0.6.1-pre"
dependencies = [
"anyhow",
"chrono",
@ -1606,7 +1606,7 @@ dependencies = [
[[package]]
name = "taskchampion-sync-server-storage-sqlite"
version = "0.6.0"
version = "0.6.1-pre"
dependencies = [
"anyhow",
"chrono",

View file

@ -1,6 +1,6 @@
[package]
name = "taskchampion-sync-server-core"
version = "0.6.0"
version = "0.6.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"
version = "0.6.0"
version = "0.6.1-pre"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2021"
publish = false

View file

@ -1,13 +1,13 @@
[package]
name = "taskchampion-sync-server-storage-sqlite"
version = "0.6.0"
version = "0.6.1-pre"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2021"
description = "SQLite backend for TaskChampion-sync-server"
license = "MIT"
[dependencies]
taskchampion-sync-server-core = { path = "../core", version = "0.6.0" }
taskchampion-sync-server-core = { path = "../core", version = "0.6.1-pre" }
uuid.workspace = true
anyhow.workspace = true
thiserror.workspace = true