Skip to content

Commit

Permalink
Version upgrade to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Boppy committed Aug 12, 2023
1 parent 80a0a29 commit d647257
Show file tree
Hide file tree
Showing 15 changed files with 52 additions and 52 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.6.0"
version = "0.6.1"
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.6.0"
version = "0.6.1"
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.6.0"
version = "0.6.1"
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.6.0"
version = "0.6.1"
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.6.0" }
spacetimedb-lib = { path = "../lib", default-features = false, version = "0.6.0"}
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.0"}
spacetimedb-bindings-sys = { path = "../bindings-sys", version = "0.6.1" }
spacetimedb-lib = { path = "../lib", default-features = false, version = "0.6.1"}
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.1"}

log.workspace = true
once_cell.workspace = true
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.6.0"
version = "0.6.1"
edition = "2021"
license-file = "LICENSE"
description = "A command line interface for SpacetimeDB"
Expand All @@ -17,8 +17,8 @@ bench = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
spacetimedb-lib = { path = "../lib", version = "0.6.0", features = ["cli"] }
spacetimedb-standalone = { path = "../standalone", version = "0.6.0", optional = true }
spacetimedb-lib = { path = "../lib", version = "0.6.1", features = ["cli"] }
spacetimedb-standalone = { path = "../standalone", version = "0.6.1", optional = true }

anyhow.workspace = true
base64.workspace = true
Expand Down
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.6.0"
version = "0.6.1"
edition = "2021"
license-file = "LICENSE"
description = "Types for the SpacetimeDB client API messages"
Expand Down
6 changes: 3 additions & 3 deletions 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.6.0"
version = "0.6.1"
edition = "2021"
license-file = "LICENSE"
description = "The HTTP API for SpacetimeDB"
Expand All @@ -9,10 +9,10 @@ description = "The HTTP API for SpacetimeDB"
tracelogging = ["spacetimedb-core/tracelogging"]

[dependencies]
spacetimedb-core = { path = "../core", version = "0.6.0" }
spacetimedb-core = { path = "../core", version = "0.6.1" }
tokio = { version = "1.2", features = ["full"] }
lazy_static = "1.4.0"
spacetimedb-lib = { path = "../lib", version = "0.6.0" }
spacetimedb-lib = { path = "../lib", version = "0.6.1" }
log = "0.4.4"
serde = "1.0.136"
serde_json = { version = "1.0", features = ["raw_value"] }
Expand Down
10 changes: 5 additions & 5 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-core"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license-file = "LICENSE"
description = "The core library for SpacetimeDB"
Expand All @@ -18,10 +18,10 @@ name = "odb_flavor_bench"
harness = false

[dependencies]
spacetimedb-lib = { path = "../lib", version = "0.6.0" }
spacetimedb-sats = { path = "../sats", version = "0.6.0" }
spacetimedb-vm = { path = "../vm", version = "0.6.0" }
spacetimedb-client-api-messages = { path = "../client-api-messages", version = "0.6.0" }
spacetimedb-lib = { path = "../lib", version = "0.6.1" }
spacetimedb-sats = { path = "../sats", version = "0.6.1" }
spacetimedb-vm = { path = "../vm", version = "0.6.1" }
spacetimedb-client-api-messages = { path = "../client-api-messages", version = "0.6.1" }

anyhow.workspace = true
async-trait.workspace = true
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.6.0"
version = "0.6.1"
edition = "2021"
license-file = "LICENSE"
description = "A common library for SpacetimeDB"
Expand All @@ -19,8 +19,8 @@ serde = ["dep:serde", "spacetimedb-sats/serde", "dep:serde_with", "chrono/serde"
cli = ["clap"]

[dependencies]
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.0" }
spacetimedb-sats = { path = "../sats", version = "0.6.0" }
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.1" }
spacetimedb-sats = { path = "../sats", version = "0.6.1" }

anyhow.workspace = true
chrono = { workspace = true, 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.6.0"
version = "0.6.1"
edition = "2021"
license-file = "LICENSE"
description = "Spacetime Algebraic Type Notation"
Expand All @@ -11,7 +11,7 @@ description = "Spacetime Algebraic Type Notation"
serde = ["dep:serde", "hex"]

[dependencies]
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.0" }
spacetimedb-bindings-macro = { path = "../bindings-macro", version = "0.6.1" }

arrayvec.workspace = true
decorum.workspace = true
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.6.0"
version = "0.6.1"
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.6.0" }
spacetimedb-lib = { path = "../lib", version = "0.6.0" }
spacetimedb-client-api-messages = { path = "../client-api-messages", version = "0.6.0" }
spacetimedb-sats = { path = "../sats", version = "0.6.1" }
spacetimedb-lib = { path = "../lib", version = "0.6.1" }
spacetimedb-client-api-messages = { path = "../client-api-messages", version = "0.6.1" }

anyhow.workspace = true
anymap.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions crates/standalone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spacetimedb-standalone"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license-file = "LICENSE"
description = "An executable for running a single SpacetimeDB standalone instance"
Expand All @@ -17,9 +17,9 @@ harness = true # Use libtest harness.
required-features = [] # Features required to build this target (N/A for lib)

[dependencies]
spacetimedb-core = { path = "../core", version = "0.6.0" }
spacetimedb-lib = { path = "../lib", version = "0.6.0", features = ["cli"] }
spacetimedb-client-api = { path = "../client-api", version = "0.6.0" }
spacetimedb-core = { path = "../core", version = "0.6.1" }
spacetimedb-lib = { path = "../lib", version = "0.6.1", features = ["cli"] }
spacetimedb-client-api = { path = "../client-api", version = "0.6.1" }

anyhow.workspace = true
async-trait.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions crates/testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ version = "0.1.0"
edition = "2021"

[dependencies]
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" }
spacetimedb-lib = { path = "../lib", version = "0.6.1" }
spacetimedb-core = { path = "../core", version = "0.6.1" }
spacetimedb-standalone = { path = "../standalone", version = "0.6.1" }
spacetimedb-client-api = { path = "../client-api", version = "0.6.1" }

anyhow.workspace = true
serde_json.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "spacetimedb-vm"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license-file = "LICENSE"
description = "A VM for SpacetimeDB"

[dependencies]
spacetimedb-sats= { path = "../sats", version = "0.6.0" }
spacetimedb-lib = { path = "../lib", version = "0.6.0" }
spacetimedb-sats= { path = "../sats", version = "0.6.1" }
spacetimedb-lib = { path = "../lib", version = "0.6.1" }

anyhow.workspace = true
thiserror.workspace = true
Expand Down

0 comments on commit d647257

Please sign in to comment.