Skip to content

Commit 6f6e23f

Browse files
committed
Version upgrade to 0.7.0 via new version-upgrade util
1 parent c7d65e3 commit 6f6e23f

File tree

19 files changed

+58
-58
lines changed

19 files changed

+58
-58
lines changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Business Source License 1.1
55
Parameters
66

77
Licensor: Clockwork Laboratories, Inc.
8-
Licensed Work: SpacetimeDB 0.6.1
8+
Licensed Work: SpacetimeDB 0.7.0
99
The Licensed Work is
1010
(c) 2023 Clockwork Laboratories, Inc.
1111

crates/bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedb-bench"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
license-file = "LICENSE"
66
description = "Bench library/utility for SpacetimeDB"

crates/bindings-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedb-bindings-macro"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
license-file = "LICENSE"
66
description = "Easy support for interacting between SpacetimeDB and Rust."

crates/bindings-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedb-bindings-sys"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
license-file = "LICENSE"
66
description = "Easy support for interacting between SpacetimeDB and Rust."

crates/bindings/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedb"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
license-file = "LICENSE"
66
description = "Easy support for interacting between SpacetimeDB and Rust."
@@ -16,9 +16,9 @@ bench = false
1616
getrandom = ["spacetimedb-bindings-sys/getrandom"]
1717

1818
[dependencies]
19-
spacetimedb-bindings-sys = { path = "../bindings-sys", version = "0.6.1" }
20-
spacetimedb-lib = { path = "../lib", default-features = false, version = "0.6.1"}
21-
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.1"}
19+
spacetimedb-bindings-sys = { path = "../bindings-sys", version = "0.7.0" }
20+
spacetimedb-lib = { path = "../lib", default-features = false, version = "0.7.0"}
21+
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.7.0"}
2222

2323
derive_more.workspace = true
2424
log.workspace = true

crates/cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedb-cli"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
license-file = "LICENSE"
66
description = "A command line interface for SpacetimeDB"
@@ -17,9 +17,9 @@ bench = false
1717
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1818

1919
[dependencies]
20-
spacetimedb-core = { path = "../core", version = "0.6.0" }
21-
spacetimedb-lib = { path = "../lib", version = "0.6.1", features = ["cli"] }
22-
spacetimedb-standalone = { path = "../standalone", version = "0.6.1", optional = true }
20+
spacetimedb-core = { path = "../core", version = "0.7.0" }
21+
spacetimedb-lib = { path = "../lib", version = "0.7.0", features = ["cli"] }
22+
spacetimedb-standalone = { path = "../standalone", version = "0.7.0", optional = true }
2323

2424
anyhow.workspace = true
2525
base64.workspace = true

crates/cli/src/subcommands/project/rust/Cargo._toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ edition = "2021"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
spacetimedb = "0.6.1"
12+
spacetimedb = "0.7.0"
1313
log = "0.4"

crates/client-api-messages/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedb-client-api-messages"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
license-file = "LICENSE"
66
description = "Types for the SpacetimeDB client API messages"

crates/client-api/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "spacetimedb-client-api"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
license-file = "LICENSE"
66
description = "The HTTP API for SpacetimeDB"
77

88
[dependencies]
9-
spacetimedb-core = { path = "../core", version = "0.6.1" }
9+
spacetimedb-core = { path = "../core", version = "0.7.0" }
1010
tokio = { version = "1.2", features = ["full"] }
1111
lazy_static = "1.4.0"
12-
spacetimedb-lib = { path = "../lib", version = "0.6.1" }
12+
spacetimedb-lib = { path = "../lib", version = "0.7.0" }
1313
log = "0.4.4"
1414
serde = "1.0.136"
1515
serde_json = { version = "1.0", features = ["raw_value"] }

0 commit comments

Comments
 (0)