Skip to content

Commit 8979925

Browse files
committed
Bump version to 0.40.0
1 parent 32cb279 commit 8979925

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.40.0] - 2026-05-17
11+
1012
### Added
1113

1214
- Shared messages and events via `SharedMessageAppExt` and `SharedEventAppExt`. Emitted as `LocalOrRemote<M>` on both the sender and the receiver to allow shared logic for client-side prediction.
@@ -22,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2224
- Rename `SendMode::Direct` into `SendTargets::Single`
2325
- Rename `ToClients::mode` into `ToClients::targets`
2426

25-
## [0.39.5] - 2026-04-26
27+
## [0.40.0] - 2026-04-26
2628

2729
### Fixed
2830

@@ -1072,8 +1074,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10721074

10731075
Initial release after separation from [Project Harmonia](https://github.com/simgine/project_harmonia).
10741076

1075-
[unreleased]: https://github.com/simgine/bevy_replicon/compare/v0.39.5...HEAD
1076-
[0.39.5]: https://github.com/simgine/bevy_replicon/compare/v0.39.4...v0.39.5
1077+
[unreleased]: https://github.com/simgine/bevy_replicon/compare/v0.40.0...HEAD
1078+
[0.40.5]: https://github.com/simgine/bevy_replicon/compare/v0.40.0...v0.40.0
1079+
[0.40.0]: https://github.com/simgine/bevy_replicon/compare/v0.39.4...v0.40.0
10771080
[0.39.4]: https://github.com/simgine/bevy_replicon/compare/v0.39.3...v0.39.4
10781081
[0.39.3]: https://github.com/simgine/bevy_replicon/compare/v0.39.2...v0.39.3
10791082
[0.39.2]: https://github.com/simgine/bevy_replicon/compare/v0.39.1...v0.39.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_replicon"
3-
version = "0.39.5"
3+
version = "0.40.0"
44
authors = [
55
"Hennadii Chernyshchyk <genaloner@gmail.com>",
66
"koe <ukoe@protonmail.com>",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Depending on your game, you may need additional features. We provide an API that
7171

7272
| bevy | bevy_replicon |
7373
| ------ | ------------- |
74-
| 0.18.0 | 0.38-0.39 |
74+
| 0.18.0 | 0.38-0.40 |
7575
| 0.17.0 | 0.36-0.37 |
7676
| 0.16.0 | 0.33-0.35 |
7777
| 0.15.0 | 0.29-0.32 |

example_backend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_replicon_example_backend"
3-
version = "0.39.0"
3+
version = "0.40.0"
44
authors = [
55
"Hennadii Chernyshchyk <genaloner@gmail.com>",
66
"koe <ukoe@protonmail.com>",
@@ -22,7 +22,7 @@ include = ["/src", "../LICENSE*"]
2222

2323
[dependencies]
2424
bevy = { version = "0.18", default-features = false, features = ["bevy_log"] }
25-
bevy_replicon = { path = "..", version = "0.39.0", default-features = false }
25+
bevy_replicon = { path = "..", version = "0.40.0", default-features = false }
2626
fastrand = "2.3"
2727

2828
[dev-dependencies]

0 commit comments

Comments
 (0)