Skip to content

Commit 793dc3b

Browse files
authored
feat: update bevy to 0.15.2 (#280)
* feat: update bevy to 0.15.2 * separate release-plz pr's for ladfile
1 parent f2a70d7 commit 793dc3b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ bevy_mod_scripting_derive = { workspace = true }
6161

6262
[workspace.dependencies]
6363
profiling = { version = "1.0" }
64-
bevy = { version = "0.15.1", default-features = false }
64+
bevy = { version = "0.15.2", default-features = false }
6565
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.9.4" }
6666
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.9.4", default-features = false }
6767
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.9.4" }
@@ -88,7 +88,8 @@ members = [
8888
"crates/bevy_mod_scripting_functions",
8989
"crates/xtask",
9090
"crates/script_integration_test_harness",
91-
"crates/bevy_mod_scripting_derive", "crates/ladfile",
91+
"crates/bevy_mod_scripting_derive",
92+
"crates/ladfile",
9293
]
9394
resolver = "2"
9495
exclude = ["crates/bevy_api_gen", "crates/macro_tests"]

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.1", features = [
9+
bevy_reflect = { version = "0.15.2", features = [
1010
"bevy",
1111
"glam",
1212
"petgraph",

crates/ladfile/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme = "readme.md"
1414
[dependencies]
1515
bevy_mod_scripting_core = { workspace = true }
1616
# I don't think bevy has a top level feature for this :C
17-
bevy_reflect = { version = "0.15.1", features = ["documentation"] }
17+
bevy_reflect = { version = "0.15.2", features = ["documentation"] }
1818
serde = { version = "1.0", features = ["derive"] }
1919
serde_json = "1.0"
2020
indexmap = { version = "2.7", features = ["serde"] }

release-plz.toml

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ git_release_body = """
1212
{% endfor %}
1313
{% endif %}
1414
"""
15+
pr_name = "chore: release {{ version }}"
1516

1617
[changelog]
1718
commit_parsers = [
@@ -77,3 +78,4 @@ git_release_latest = false
7778
git_tag_enable = true
7879
git_tag_name = "v{{ version }}-ladfile"
7980
git_release_name = "v{{ version }}-ladfile"
81+
pr_name = "chore: release ladfile {{ version }}"

0 commit comments

Comments
 (0)