Skip to content

Commit

Permalink
Release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnWong committed Jun 11, 2021
1 parent 5843225 commit 7d9f0a8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crystalorb"
version = "0.2.0"
version = "0.2.1"
authors = ["Ernest Wong <[email protected]>"]
categories = ["games", "simulation"]
description = "Network-agnostic, high-level game networking library"
Expand Down
4 changes: 2 additions & 2 deletions crates/crystalorb-bevy-networking-turbulence/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crystalorb-bevy-networking-turbulence"
version = "0.2.0"
version = "0.2.1"
authors = ["Ernest Wong <[email protected]>"]
categories = ["games", "simulation"]
description = "bevy_networking_turbulence integration for CrystalOrb"
Expand All @@ -20,7 +20,7 @@ bevy_app = "0.5"
bevy_ecs = "0.5"
bevy_core = "0.5"
bevy_networking_turbulence = {version = "0.3.0", default-features = false}
crystalorb = {version = "0.2.0", path="../../"}
crystalorb = {version = "0.2.1", path="../../"}
serde = {version = "1.0.118", features = ["derive"]}
turbulence = "0.3"

Expand Down
4 changes: 2 additions & 2 deletions crates/crystalorb-mock-network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crystalorb-mock-network"
version = "0.2.0"
version = "0.2.1"
authors = ["Ernest Wong <[email protected]>"]
categories = ["games", "simulation"]
description = "Mock, offline, in-memory transport layer for CrystalOrb"
Expand All @@ -11,7 +11,7 @@ readme = "README.markdown"
repository = "https://github.com/ErnWong/crystalorb"

[dependencies]
crystalorb = {version = "0.2.0", path = "../../"}
crystalorb = {version = "0.2.1", path = "../../"}
serde = {version = "1.0.118", features = ["derive"]}

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions examples/demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crystalorb-demo"
version = "0.2.0"
version = "0.2.1"
authors = ["Ernest Wong <[email protected]>"]
categories = ["games", "simulation"]
description = "Visual and interactive demo for CrystalOrb using the Rapier physics engine"
Expand All @@ -16,8 +16,8 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "~0.2"
js-sys = "~0.3"
crystalorb = {version = "0.2.0", path = "../../"}
crystalorb-mock-network = {version = "0.2.0", path = "../../crates/crystalorb-mock-network"}
crystalorb = {version = "0.2.1", path = "../../"}
crystalorb-mock-network = {version = "0.2.1", path = "../../crates/crystalorb-mock-network"}
rapier2d = {version = "0.9.1", features = ["serde-serialize", "wasm-bindgen"]}
serde = {version = "1.0.118", features = ["derive"]}
tracing-wasm = "0.2.0"
Expand Down

0 comments on commit 7d9f0a8

Please sign in to comment.