Skip to content

Commit

Permalink
Updated version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cloutiertyler committed Aug 2, 2023
1 parent 5957096 commit 3e0caff
Show file tree
Hide file tree
Showing 17 changed files with 44 additions and 44 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-bench"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "Bench library/utility for SpacetimeDB"
Expand Down
2 changes: 1 addition & 1 deletion crates/bindings-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-bindings-macro"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "Easy support for interacting between SpacetimeDB and Rust."
Expand Down
2 changes: 1 addition & 1 deletion crates/bindings-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-bindings-sys"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "Easy support for interacting between SpacetimeDB and Rust."
Expand Down
8 changes: 4 additions & 4 deletions crates/bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "Easy support for interacting between SpacetimeDB and Rust."
Expand All @@ -16,9 +16,9 @@ bench = false
getrandom = ["spacetimedb-bindings-sys/getrandom"]

[dependencies]
spacetimedb-bindings-sys = { path = "../bindings-sys", version = "0.5.0" }
spacetimedb-lib = { path = "../lib", default-features = false, version = "0.5.0"}
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.5.0"}
spacetimedb-bindings-sys = { path = "../bindings-sys", version = "0.6.0" }
spacetimedb-lib = { path = "../lib", default-features = false, version = "0.6.0"}
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.0"}
once_cell = "1.15.0"
scoped-tls = "1.0.1"
log = "0.4.17"
Expand Down
6 changes: 3 additions & 3 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-cli"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "A command line interface for SpacetimeDB"
Expand All @@ -26,8 +26,8 @@ serde_json = { version = "1.0", features = ["raw_value", "preserve_order"] }
toml = "0.5"
dirs = "4.0"
tabled = "0.8.0"
spacetimedb-lib = { path = "../lib", version = "0.5.0", features = ["cli"] }
spacetimedb-standalone = { path = "../standalone", version = "0.5.0", optional = true }
spacetimedb-lib = { path = "../lib", version = "0.6.0", features = ["cli"] }
spacetimedb-standalone = { path = "../standalone", version = "0.6.0", optional = true }
convert_case = "0.6.0"
wasmtime = { version = "7", default-features = false, features = ["cranelift"] }
colored = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/src/subcommands/project/rust/Cargo._toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
spacetimedb = "0.5.0"
spacetimedb = "0.6.0"
log = "0.4"
2 changes: 1 addition & 1 deletion crates/client-api-messages/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-client-api-messages"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "Types for the SpacetimeDB client API messages"
Expand Down
2 changes: 1 addition & 1 deletion crates/client-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-client-api"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-core"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
publish = false

Expand Down
6 changes: 3 additions & 3 deletions crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-lib"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "A common library for SpacetimeDB"
Expand All @@ -26,8 +26,8 @@ hex = "0.4.3"
thiserror = "1.0.37"
itertools = "0.10.5"
anyhow = "1.0.68"
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.5.0" }
spacetimedb-sats = { path = "../sats", version = "0.5.0" }
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.0" }
spacetimedb-sats = { path = "../sats", version = "0.6.0" }
serde_with = { version = "2.2.0", optional = true }
chrono = { version = "0.4.23", optional = true, default-features = false }
clap = { version = "4.2.4", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/sats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-sats"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "Spacetime Algebraic Type Notation"
Expand All @@ -14,7 +14,7 @@ serde = ["dep:serde", "hex"]
decorum = { version = "0.3.1", default-features = false, features = ["std"] }
enum-as-inner = "0.6"
serde = { version = "1.0.136", optional = true }
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.5.0" }
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.0" }
hex = { version = "0.4.3", optional = true }
itertools = "0.10.5"
thiserror = "1.0.38"
Expand Down
8 changes: 4 additions & 4 deletions crates/sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "spacetimedb-sdk"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "A Rust SDK for clients to interface with SpacetimeDB"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
spacetimedb-sats = { path = "../sats", version = "0.5.0" }
spacetimedb-lib = { path = "../lib", version = "0.5.0" }
spacetimedb-client-api-messages = { path = "../client-api-messages", version = "0.5.0" }
spacetimedb-sats = { path = "../sats", version = "0.6.0" }
spacetimedb-lib = { path = "../lib", version = "0.6.0" }
spacetimedb-client-api-messages = { path = "../client-api-messages", version = "0.6.0" }
tokio-tungstenite = { version = "0.19", features = ["native-tls"] }
tokio = { version = "1.2", features = ["full"] }
http = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion crates/standalone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-standalone"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
publish = false

Expand Down
8 changes: 4 additions & 4 deletions crates/testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
spacetimedb-lib = { path = "../lib", version = "0.5.0" }
spacetimedb-core = { path = "../core", version = "0.5.0" }
spacetimedb-standalone = { path = "../standalone", version = "0.5.0" }
spacetimedb-client-api = { path = "../client-api", version = "0.5.0" }
spacetimedb-lib = { path = "../lib", version = "0.6.0" }
spacetimedb-core = { path = "../core", version = "0.6.0" }
spacetimedb-standalone = { path = "../standalone", version = "0.6.0" }
spacetimedb-client-api = { path = "../client-api", version = "0.6.0" }

tokio = { version = "1.25", features = ["full"]}
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-vm"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
description = "A VM for SpacetimeDB"
Expand Down
4 changes: 2 additions & 2 deletions tools/upgrade-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ upgrade_version bindings-sys
upgrade_version cli
upgrade_version lib
upgrade_version sats
upgrade_version client-sdk
upgrade_version sdk

upgrade_version testing --skip-version

# Upgrade the template that is shipped with the cli
fsed 's@.*spacetimedb.*=.*".*".*@spacetimedb = "'"${version}"'"@' "crates/cli/src/subcommands/project/Cargo._toml"
fsed 's@.*spacetimedb.*=.*".*".*@spacetimedb = "'"${version}"'"@' "crates/cli/src/subcommands/project/rust/Cargo._toml"
fsed 's@.*spacetimedb-lib.*=.*@spacetimedb-lib = { path = "../lib", default-features = false }@' "crates/bindings/Cargo.toml"
fsed 's@.*spacetimedb-bindings-macro.*=.*@spacetimedb-bindings-macro = { path = "../bindings-macro" }@' "crates/bindings/Cargo.toml"

Expand Down

0 comments on commit 3e0caff

Please sign in to comment.