Skip to content

Commit 437c24e

Browse files
authored
Require Bevy 0.15.3 (#440)
* Require Bevy 0.15.3 It looks like we used some fields that were made public in 0.15.3. * Fix formatting * Update changelog
1 parent bb256e7 commit 437c24e

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Bump the `bevy` dependency to 0.15.3 since we use some fields that were made public in a patch release.
13+
1014
## [0.31.0] - 2025-03-13
1115

1216
### Added

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ all-features = true
2828
members = ["bevy_replicon_example_backend"]
2929

3030
[dependencies]
31-
bevy = { version = "0.15", default-features = false, features = ["serialize"] }
31+
bevy = { version = "0.15.3", default-features = false, features = [
32+
"serialize",
33+
] }
3234
typeid = "1.0"
3335
bytes = "1.10"
3436
serde = "1.0"
@@ -39,7 +41,7 @@ postcard = { version = "1.1", default-features = false, features = [
3941
] }
4042

4143
[dev-dependencies]
42-
bevy = { version = "0.15", default-features = false, features = [
44+
bevy = { version = "0.15.3", default-features = false, features = [
4345
"serialize",
4446
"bevy_asset",
4547
"bevy_scene",

bevy_replicon_example_backend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ license = "MIT OR Apache-2.0"
2121
include = ["/src", "../LICENSE*"]
2222

2323
[dependencies]
24-
bevy = { version = "0.15", default-features = false }
24+
bevy = { version = "0.15.3", default-features = false }
2525
bevy_replicon = { path = "..", version = "0.31", default-features = false }
2626

2727
[dev-dependencies]
28-
bevy = { version = "0.15", default-features = false, features = [
28+
bevy = { version = "0.15.3", default-features = false, features = [
2929
"bevy_text",
3030
"bevy_ui",
3131
"bevy_gizmos",

0 commit comments

Comments
 (0)