Skip to content

Commit

Permalink
Update to official Bevy 0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Jondolf committed Jul 4, 2024
1 parent 5fec87d commit e3e6837
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

**⚠️ Bevy XPBD has been deprecated in favor of its successor [Avian](https://github.com/Jondolf/avian).
No further development or maintenance will be done for Bevy XPBD.
See [#346](https://github.com/Jondolf/avian/issues/346) for background.**
See [#346](https://github.com/Jondolf/bevy_xpbd/issues/346) for background.**

---

Expand Down
2 changes: 1 addition & 1 deletion crates/benches_common_3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"

[dependencies]
bevy = { version = "0.14.0-rc", default-features = false }
bevy = { version = "0.14", default-features = false }
bevy_xpbd_3d = { path = "../bevy_xpbd_3d", default-features = false }
criterion = "0.5"
6 changes: 3 additions & 3 deletions crates/bevy_xpbd_2d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ required-features = ["2d"]

[dependencies]
bevy_xpbd_derive = { path = "../bevy_xpbd_derive", version = "0.1" }
bevy = { version = "0.14.0-rc", default-features = false }
bevy_math = { version = "0.14.0-rc" }
bevy = { version = "0.14", default-features = false }
bevy_math = { version = "0.14" }
parry2d = { version = "0.15", optional = true }
parry2d-f64 = { version = "0.15", optional = true }
nalgebra = { version = "0.32.6", features = [
Expand All @@ -64,7 +64,7 @@ itertools = "0.13"

[dev-dependencies]
examples_common_2d = { path = "../examples_common_2d" }
bevy_math = { version = "0.14.0-rc", features = ["approx"] }
bevy_math = { version = "0.14", features = ["approx"] }
approx = "0.5"
insta = "1.0"

Expand Down
6 changes: 3 additions & 3 deletions crates/bevy_xpbd_3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ required-features = ["3d"]

[dependencies]
bevy_xpbd_derive = { path = "../bevy_xpbd_derive", version = "0.1" }
bevy = { version = "0.14.0-rc", default-features = false }
bevy_math = { version = "0.14.0-rc" }
bevy = { version = "0.14", default-features = false }
bevy_math = { version = "0.14" }
parry3d = { version = "0.15", optional = true }
parry3d-f64 = { version = "0.15", optional = true }
nalgebra = { version = "0.32.6", features = [
Expand All @@ -74,7 +74,7 @@ itertools = "0.13"
[dev-dependencies]
examples_common_3d = { path = "../examples_common_3d" }
benches_common_3d = { path = "../benches_common_3d" }
bevy_math = { version = "0.14.0-rc", features = ["approx"] }
bevy_math = { version = "0.14", features = ["approx"] }
approx = "0.5"
criterion = { version = "0.5", features = ["html_reports"] }
insta = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/examples_common_2d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
use-debug-plugin = []

[dependencies]
bevy = { version = "0.14.0-rc", default-features = false, features = [
bevy = { version = "0.14", default-features = false, features = [
"bevy_core_pipeline",
"bevy_state",
"bevy_text",
Expand Down
2 changes: 1 addition & 1 deletion crates/examples_common_3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
use-debug-plugin = []

[dependencies]
bevy = { version = "0.14.0-rc", default-features = false, features = [
bevy = { version = "0.14", default-features = false, features = [
"bevy_core_pipeline",
"bevy_state",
"bevy_text",
Expand Down

0 comments on commit e3e6837

Please sign in to comment.