Skip to content

Commit 46a482a

Browse files
authored
fix: bump bevy to 0.15.1 (makspll#241)
fix: bump bevy to 0.15.1
1 parent 645d933 commit 46a482a

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", v
5959
bevy_mod_scripting_functions = { workspace = true }
6060
[workspace.dependencies]
6161
profiling = { version = "1.0" }
62-
bevy = { version = "0.15.0", default-features = false }
62+
bevy = { version = "0.15.1", default-features = false }
6363
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.9.0" }
6464
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.9.0", default-features = false }
6565

crates/bevy_api_gen/Cargo.bootstrap.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
bevy_mod_scripting_core = { path = "{{BMS_CORE_PATH}}" }
9-
bevy_reflect = { version = "0.15.0", features = [
9+
bevy_reflect = { version = "0.15.1", features = [
1010
"bevy",
1111
"glam",
1212
"petgraph",

makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ TEST_NAME=
2222
# # valgrind outputs a callgrind.out.<pid>. We can analyze this with kcachegrind
2323
# kcachegrind
2424
NIGHTLY_VERSION=nightly-2024-12-15
25-
BEVY_VERSION=0.15.0
25+
BEVY_VERSION=0.15.1
2626
GLAM_VERSION=0.29.0
2727
CODEGEN_PATH=${PWD}/target/codegen
2828
BEVY_PATH=${CODEGEN_PATH}/bevy

readme.md

+10
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ The languages currently supported are as follows:
4545

4646
For examples, installation and usage instructions see our shiny new [book](https://makspll.github.io/bevy_mod_scripting)
4747

48+
## Bevy Compatibility
49+
50+
| bevy_mod_scripting | bevy |
51+
|---------------------|--------|
52+
| 0.9.1 | 0.15.1 |
53+
| 0.9 | 0.15.0 |
54+
| 0.8 | 0.15.0 |
55+
| 0.7 | 0.14 |
56+
| 0.6 | 0.13.1 |
57+
4858
[^1]: Due to the recent re-write of the crate, documentation generation as well as rune support are temporarilly on hold. They will likely be re-implemented in the future.
4959

5060
[^2]: the coverage does not include generated bindings.

0 commit comments

Comments
 (0)