Skip to content

Commit e312513

Browse files
committed
Merge branch 'main' of https://github.com/makspll/bevy_scripting into main
2 parents a96ca56 + d4c72b3 commit e312513

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ tealr = { version = "0.9.0-alpha1", features=["mlua_vendored","mlua_send"]}
4747
rhai = { version = "1.7.0", features = ["sync"] }
4848
anyhow = "1.0.57"
4949
once_cell = "1.10.0"
50-
bevy_event_priority = { path = "bevy_event_priority", version="0.1.0" }
51-
bevy_mod_scripting_derive = {path = "bevy_mod_scripting_derive", version="0.1.0"}
50+
bevy_event_priority = { path = "bevy_event_priority", version = "0.1.0" }
51+
bevy_mod_scripting_derive = {path = "bevy_mod_scripting_derive", version = "0.1.0"}
5252
thiserror = "1.0.31"
5353
lazy_static = "1.4.0"
5454
paste = "1.0.7"

release.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
push=false
2+
enable-features=["lua54"]
3+
pre-release-replacements = [
4+
{file="bevy_mod_scripting_derive/Cargo.toml", search="version = .*\nauthors", replace="version = \"{{version}}\"\nauthors", exactly=1},
5+
{file="bevy_api_gen/Cargo.toml", search="version = .*\nauthors", replace="version = \"{{version}}\"\nauthors", exactly=1},
6+
{file="bevy_event_priority/Cargo.toml", search="version = .*\nauthors", replace="version = \"{{version}}\"\nauthors", exactly=1},
7+
{file="Cargo.toml", search="version = .*\nauthors", replace="version = \"{{version}}\"\nauthors", exactly=1},
8+
{file="Cargo.toml", search="bevy_event_priority = .*", replace="bevy_event_priority = {path = \"bevy_event_priority\", version = \"{{version}}\"}", exactly=1},
9+
{file="Cargo.toml", search="bevy_mod_scripting_derive = .*", replace="bevy_mod_scripting_derive = {path = \"bevy_mod_scripting_derive\", version = \"{{version}}\"}", exactly=1},
10+
]

0 commit comments

Comments
 (0)