Skip to content

Commit

Permalink
Merge pull request #291 from johanhelsing/release-0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
johanhelsing authored Aug 11, 2023
2 parents 4060105 + dcd3cfb commit cc1faa2
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 20 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ The Matchbox project contains:
- [bevy_matchbox](https://github.com/johanhelsing/matchbox/tree/main/bevy_matchbox): A `matchbox_socket` integration for the [Bevy](https://bevyengine.org/) game engine
| bevy | bevy_matchbox |
|-------|---------------|
| < 0.9 | Unsupported |
| 0.11 | 0.7, main |
| 0.10 | 0.6 |
| 0.11 | 0.7 |
| < 0.9 | Unsupported |

## Examples

Expand Down
6 changes: 3 additions & 3 deletions bevy_matchbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_matchbox"
version = "0.6.0"
version = "0.7.0"
authors = [
"Johan Helsing <[email protected]>",
"Garry O'Donnell <[email protected]",
Expand All @@ -25,8 +25,8 @@ signaling = ["matchbox_signaling"]

[dependencies]
bevy = { version = "0.11", default-features = false }
matchbox_socket = { path = "../matchbox_socket" }
matchbox_socket = { version = "0.7", path = "../matchbox_socket" }
cfg-if = "1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
matchbox_signaling = { path = "../matchbox_signaling", optional = true }
matchbox_signaling = { version = "0.7", path = "../matchbox_signaling", optional = true }
2 changes: 1 addition & 1 deletion examples/bevy_ggrs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_ggrs_example"
version = "0.6.0"
version = "0.7.0"
authors = ["Johan Helsing <[email protected]>"]
description = "A demo game where two web browser can connect and move boxes around"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion matchbox_protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matchbox_protocol"
version = "0.6.0"
version = "0.7.0"
authors = [
"Johan Helsing <[email protected]>",
"Spencer C. Imbleau <[email protected]>",
Expand Down
8 changes: 5 additions & 3 deletions matchbox_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matchbox_server"
version = "0.6.0"
version = "0.7.0"
authors = ["Johan Helsing <[email protected]>"]
edition = "2021"
description = "A signaling server for WebRTC peer-to-peer full-mesh networking"
Expand All @@ -17,8 +17,10 @@ homepage = "https://github.com/johanhelsing/matchbox"
readme = "../README.md"

[dependencies]
matchbox_signaling = { path = "../matchbox_signaling" }
matchbox_protocol = { path = "../matchbox_protocol", features = ["json"] }
matchbox_signaling = { version = "0.7", path = "../matchbox_signaling" }
matchbox_protocol = { version = "0.7", path = "../matchbox_protocol", features = [
"json",
] }
async-trait = "0.1"
axum = { version = "0.6", features = ["ws"] }
tracing = { version = "0.1", features = ["log"] }
Expand Down
6 changes: 4 additions & 2 deletions matchbox_signaling/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matchbox_signaling"
version = "0.6.0"
version = "0.7.0"
authors = [
"Johan Helsing <[email protected]>",
"Spencer C. Imbleau <[email protected]>",
Expand All @@ -18,7 +18,9 @@ categories = [
repository = "https://github.com/johanhelsing/matchbox"

[dependencies]
matchbox_protocol = { path = "../matchbox_protocol", features = ["json"] }
matchbox_protocol = { version = "0.7", path = "../matchbox_protocol", features = [
"json",
] }
axum = { version = "0.6", features = ["ws"] }
hyper = { version = "0.14", features = ["server"] }
tracing = { version = "0.1", features = ["log"] }
Expand Down
4 changes: 2 additions & 2 deletions matchbox_socket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matchbox_socket"
version = "0.6.1"
version = "0.7.0"
authors = ["Johan Helsing <[email protected]>"]
description = "Painless WebRTC peer-to-peer full-mesh networking socket"
edition = "2021"
Expand All @@ -18,7 +18,7 @@ repository = "https://github.com/johanhelsing/matchbox"
ggrs = ["dep:bincode", "dep:ggrs"]

[dependencies]
matchbox_protocol = { path = "../matchbox_protocol", default-features = false }
matchbox_protocol = { version = "0.7", path = "../matchbox_protocol", default-features = false }
futures-channel = { version = "0.3", default-features = false, features = [
"sink",
] }
Expand Down

0 comments on commit cc1faa2

Please sign in to comment.