From 7723ebaa77ae4569f07cacbc3816ce4927914531 Mon Sep 17 00:00:00 2001 From: Hennadii Chernyshchyk Date: Thu, 5 Dec 2024 15:43:05 +0200 Subject: [PATCH] Bump version to 0.5.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- README.md | 2 +- macros/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ceacab..ac83fe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0] - 2024-12-05 + ### Added - `InputBindSet::with_modifiers_each` and `InputBindSet::with_conditions_each` to add conditions and modifiers to sets. @@ -117,7 +119,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release. -[unreleased]: https://github.com/projectharmonia/bevy_replicon/compare/v0.4.0...HEAD +[unreleased]: https://github.com/projectharmonia/bevy_replicon/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/projectharmonia/bevy_replicon/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/projectharmonia/bevy_replicon/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/projectharmonia/bevy_replicon/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/projectharmonia/bevy_replicon/compare/v0.2.0...v0.2.1 diff --git a/Cargo.toml b/Cargo.toml index 71ae2dc..055e57e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_enhanced_input" -version = "0.4.0" +version = "0.5.0" authors = ["Hennadii Chernyshchyk "] edition = "2021" description = "Dynamic and contextual input mappings for Bevy" @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" include = ["/src", "/tests", "/examples", "/LICENSE*"] [dependencies] -bevy_enhanced_input_macros = { path = "macros", version = "0.4.0" } +bevy_enhanced_input_macros = { path = "macros", version = "0.5.0" } bevy = { version = "0.15", default-features = false, features = ["serialize"] } bevy_egui = { version = "0.31", default-features = false, optional = true } serde = "1.0" diff --git a/README.md b/README.md index ec8aaed..ffab720 100644 --- a/README.md +++ b/README.md @@ -28,5 +28,5 @@ Have any questions? Feel free to ask in the dedicated [`bevy_enhanced_input` cha ## Bevy compatibility | bevy | bevy_enhanced_input | | ----------- | ------------------- | -| 0.15.0 | 0.4 | +| 0.15.0 | 0.4-0.5 | | 0.14.0 | 0.1-0.3 | diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 695db11..96c9a2b 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_enhanced_input_macros" -version = "0.4.0" +version = "0.5.0" authors = ["Hennadii Chernyshchyk "] edition = "2021" description = "Bevy Enhanced Input Macros"