Skip to content

Commit 1ff54c5

Browse files
committed
chore: bump versions, unify all releases in the monorepo
1 parent a29deb8 commit 1ff54c5

File tree

8 files changed

+193
-84
lines changed

8 files changed

+193
-84
lines changed

Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories.workspace = true
1313
readme.workspace = true
1414

1515
[workspace.package]
16-
version = "0.16.1"
16+
version = "0.17.0"
1717
edition = "2024"
1818
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
1919
license = "MIT OR Apache-2.0"
@@ -123,23 +123,23 @@ ladfile_builder = { workspace = true, optional = true }
123123
# local crates
124124
script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" }
125125
test_utils = { path = "crates/testing_crates/test_utils" }
126-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.16.1", default-features = false }
127-
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.1" }
128-
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.3.1", default-features = false }
129-
ladfile = { path = "crates/ladfile", version = "0.6.1" }
130-
ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.1" }
131-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.1", default-features = false }
132-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.1", default-features = false }
133-
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.16.1", default-features = false }
134-
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.16.1", default-features = false }
135-
bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.16.1", default-features = false }
136-
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.16.1", default-features = false }
137-
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.16.1", default-features = false }
138-
lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.16.1", default-features = false }
126+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.17.0", default-features = false }
127+
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.17.0" }
128+
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.17.0", default-features = false }
129+
ladfile = { path = "crates/ladfile", version = "0.17.0" }
130+
ladfile_builder = { path = "crates/ladfile_builder", version = "0.17.0" }
131+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.17.0", default-features = false }
132+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.17.0", default-features = false }
133+
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.17.0", default-features = false }
134+
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.17.0", default-features = false }
135+
bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.17.0", default-features = false }
136+
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.17.0", default-features = false }
137+
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.17.0", default-features = false }
138+
lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.17.0", default-features = false }
139+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.17.0" }
139140

140141
# bevy
141142

142-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.1" }
143143
bevy = { version = "0.16.0", default-features = false }
144144
bevy_math = { version = "0.16.0", default-features = false, features = ["std"] }
145145
bevy_transform = { version = "0.16.0", default-features = false }
@@ -271,12 +271,12 @@ members = [
271271
"crates/lad_backends/mdbook_lad_preprocessor",
272272
"crates/ladfile_builder",
273273
"crates/bevy_system_reflection",
274-
"crates/bindings/*",
275274
"crates/bevy_mod_scripting_asset",
276275
"crates/bevy_mod_scripting_bindings",
277276
"crates/bevy_mod_scripting_display",
278277
"crates/bevy_mod_scripting_script",
279278
"crates/bevy_mod_scripting_bindings_domain",
279+
"crates/bindings/*",
280280
]
281281
resolver = "2"
282282
exclude = ["codegen", "crates/macro_tests", "xtask"]

crates/bevy_mod_scripting_functions/Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -48,38 +48,38 @@ bevy_mod_scripting_display = { workspace = true }
4848
bevy_mod_scripting_asset = { workspace = true }
4949
bevy_mod_scripting_script = { workspace = true }
5050
bevy_mod_scripting_derive = { workspace = true }
51-
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.16.1" }
52-
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.16.1" }
53-
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.3.1" }
51+
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.17.0" }
52+
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.17.0" }
53+
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.17.0" }
5454

5555
bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] }
5656
bevy_app = { workspace = true }
5757
bevy_asset = { workspace = true }
5858
bevy_platform = { workspace = true, features = ["std"] }
5959
bevy_reflect = { workspace = true, features = [] }
6060

61-
bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.16.1", optional = true }
62-
bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.16.1", optional = true }
63-
bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.16.1", optional = true }
64-
bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.16.1", optional = true }
65-
bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.16.1", optional = true }
66-
bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.16.1", optional = true }
67-
bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.16.1", optional = true }
68-
bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.16.1", optional = true }
69-
bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.16.1", optional = true }
70-
bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.16.1", optional = true }
71-
bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.16.1", optional = true }
72-
bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.16.1", optional = true }
73-
bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.16.1", optional = true }
74-
bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.16.1", optional = true }
75-
bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.16.1", optional = true }
76-
bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.16.1", optional = true }
77-
bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.16.1", optional = true }
78-
bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.16.1", optional = true }
79-
bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.16.1", optional = true }
80-
bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.16.1", optional = true }
81-
bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.16.1", optional = true }
82-
bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.16.1", optional = true }
61+
bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.17.0", optional = true }
62+
bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.17.0", optional = true }
63+
bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.17.0", optional = true }
64+
bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.17.0", optional = true }
65+
bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.17.0", optional = true }
66+
bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.17.0", optional = true }
67+
bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.17.0", optional = true }
68+
bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.17.0", optional = true }
69+
bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.17.0", optional = true }
70+
bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.17.0", optional = true }
71+
bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.17.0", optional = true }
72+
bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.17.0", optional = true }
73+
bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.17.0", optional = true }
74+
bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.17.0", optional = true }
75+
bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.17.0", optional = true }
76+
bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.17.0", optional = true }
77+
bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.17.0", optional = true }
78+
bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.17.0", optional = true }
79+
bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.17.0", optional = true }
80+
bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.17.0", optional = true }
81+
bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.17.0", optional = true }
82+
bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.17.0", optional = true }
8383

8484
[lints]
8585
workspace = true

crates/bevy_system_reflection/Cargo.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[package]
22
name = "bevy_system_reflection"
3-
version = "0.3.1"
4-
edition = "2024"
5-
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
6-
license = "MIT OR Apache-2.0"
73
description = "Utilities for reflecting systems, schedules, system sets and rendering schedules"
8-
repository = "https://github.com/makspll/bevy_mod_scripting"
9-
homepage = "https://github.com/makspll/bevy_mod_scripting"
10-
keywords = ["bevy", "gamedev", "scripting", "lua"]
11-
categories = ["game-development"]
12-
readme = "readme.md"
4+
version.workspace = true
5+
edition.workspace = true
6+
authors.workspace = true
7+
license.workspace = true
8+
homepage.workspace = true
9+
repository.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
12+
readme.workspace = true
13+
1314

1415
[dependencies]
1516
bevy_ecs = { workspace = true, default-features = false, features = [] }

crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "mdbook_lad_preprocessor"
3-
version = "0.3.1"
43
description = "Language Agnostic Declaration (LAD) file format for the bevy_mod_scripting crate"
54
readme = "readme.md"
5+
version.workspace = true
66
edition.workspace = true
77
authors.workspace = true
88
license.workspace = true
@@ -11,6 +11,7 @@ repository.workspace = true
1111
keywords.workspace = true
1212
categories.workspace = true
1313

14+
1415
[dependencies]
1516
env_logger = { workspace = true }
1617
clap = { workspace = true }

crates/ladfile/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "ladfile"
3-
version = "0.6.1"
43
description = "Language Agnostic Declaration (LAD) file format for the bevy_mod_scripting crate"
54
readme = "readme.md"
5+
version.workspace = true
66
edition.workspace = true
77
authors.workspace = true
88
license.workspace = true
@@ -11,6 +11,7 @@ repository.workspace = true
1111
keywords.workspace = true
1212
categories.workspace = true
1313

14+
1415
[dependencies]
1516
serde = { workspace = true, features = ["derive", "std"] }
1617
serde_json = { workspace = true, features = ["std"] }

crates/ladfile_builder/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ladfile_builder"
3-
version = "0.6.1"
43
description = "Language Agnostic Declaration (LAD) file format for the bevy_mod_scripting crate"
4+
version.workspace = true
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true
@@ -11,6 +11,7 @@ keywords.workspace = true
1111
categories.workspace = true
1212
readme.workspace = true
1313

14+
1415
[features]
1516
default = []
1617
lua_language_server_files = ["lua_language_server_lad_backend"]

crates/languages/bevy_mod_scripting_rune/Cargo.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
[package]
22
name = "bevy_mod_scripting_rune"
3-
version = "0.9.0-alpha.2"
4-
edition = "2024"
5-
license = "MIT OR Apache-2.0"
63
description = "Necessary functionality for Rune support with bevy_mod_scripting"
7-
repository = "https://github.com/makspll/bevy_mod_scripting"
8-
homepage = "https://github.com/makspll/bevy_mod_scripting"
9-
keywords = ["bevy", "gamedev", "scripting", "rune"]
10-
categories = ["game-development"]
11-
readme = "readme.md"
4+
version.workspace = true
5+
edition.workspace = true
6+
authors.workspace = true
7+
license.workspace = true
8+
homepage.workspace = true
9+
repository.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
12+
readme.workspace = true
13+
1214

1315
[lib]
1416
name = "bevy_mod_scripting_rune"

release-plz.toml

Lines changed: 126 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,40 @@ git_release_name = "v{{ version }}"
4242
changelog_include = [
4343
"bevy_mod_scripting_lua",
4444
"bevy_mod_scripting_core",
45+
"bevy_mod_scripting_derive",
4546
"bevy_mod_scripting_rhai",
46-
# "bevy_mod_scripting_rune",
47+
"bevy_mod_scripting_rune",
4748
"bevy_mod_scripting_functions",
49+
"lua_language_server_lad_backend",
50+
"ladfile",
51+
"ladfile_builder",
52+
"mdbook_lad_preprocessor",
53+
"bevy_system_reflection",
54+
55+
## bindings crates
56+
57+
"bevy_a11y_bms_bindings",
58+
"bevy_animation_bms_bindings",
59+
"bevy_asset_bms_bindings",
60+
"bevy_color_bms_bindings",
61+
"bevy_core_pipeline_bms_bindings",
62+
"bevy_ecs_bms_bindings",
63+
"bevy_gizmos_bms_bindings",
64+
"bevy_gltf_bms_bindings",
65+
"bevy_image_bms_bindings",
66+
"bevy_input_bms_bindings",
67+
"bevy_input_focus_bms_bindings",
68+
"bevy_math_bms_bindings",
69+
"bevy_mesh_bms_bindings",
70+
"bevy_pbr_bms_bindings",
71+
"bevy_picking_bms_bindings",
72+
"bevy_reflect_bms_bindings",
73+
"bevy_render_bms_bindings",
74+
"bevy_scene_bms_bindings",
75+
"bevy_sprite_bms_bindings",
76+
"bevy_text_bms_bindings",
77+
"bevy_time_bms_bindings",
78+
"bevy_transform_bms_bindings",
4879
]
4980

5081
[[package]]
@@ -78,34 +109,106 @@ version_group = "main"
78109

79110
[[package]]
80111
name = "ladfile"
81-
git_release_enable = true
82-
git_release_latest = false
83-
git_tag_enable = true
84-
git_tag_name = "v{{ version }}-ladfile"
85-
git_release_name = "v{{ version }}-ladfile"
112+
version_group = "main"
86113

87114
[[package]]
88115
name = "ladfile_builder"
89-
git_release_enable = true
90-
git_release_latest = false
91-
git_tag_enable = true
92-
git_tag_name = "v{{ version }}-ladfile_builder"
93-
git_release_name = "v{{ version }}-ladfile_builder"
116+
version_group = "main"
94117

95118
[[package]]
96-
changelog_update = true
97119
name = "mdbook_lad_preprocessor"
98-
git_release_enable = true
99-
git_release_latest = false
100-
git_tag_enable = true
101-
git_tag_name = "v{{ version }}-mdbook_lad_preprocessor"
102-
git_release_name = "v{{ version }}-mdbook_lad_preprocessor"
120+
version_group = "main"
103121

104122
[[package]]
105-
changelog_update = true
106123
name = "bevy_system_reflection"
107-
git_release_enable = true
108-
git_release_latest = false
109-
git_tag_enable = true
110-
git_tag_name = "v{{ version }}-bevy_system_reflection"
111-
git_release_name = "v{{ version }}-bevy_system_reflection"
124+
version_group = "main"
125+
126+
# bindings crates
127+
128+
[[package]]
129+
name = "bevy_a11y_bms_bindings"
130+
version_group = "main"
131+
132+
[[package]]
133+
name = "bevy_animation_bms_bindings"
134+
version_group = "main"
135+
136+
[[package]]
137+
name = "bevy_asset_bms_bindings"
138+
version_group = "main"
139+
140+
[[package]]
141+
name = "bevy_color_bms_bindings"
142+
version_group = "main"
143+
144+
[[package]]
145+
name = "bevy_core_pipeline_bms_bindings"
146+
version_group = "main"
147+
148+
[[package]]
149+
name = "bevy_ecs_bms_bindings"
150+
version_group = "main"
151+
152+
[[package]]
153+
name = "bevy_gizmos_bms_bindings"
154+
version_group = "main"
155+
156+
[[package]]
157+
name = "bevy_gltf_bms_bindings"
158+
version_group = "main"
159+
160+
[[package]]
161+
name = "bevy_image_bms_bindings"
162+
version_group = "main"
163+
164+
[[package]]
165+
name = "bevy_input_bms_bindings"
166+
version_group = "main"
167+
168+
[[package]]
169+
name = "bevy_input_focus_bms_bindings"
170+
version_group = "main"
171+
172+
[[package]]
173+
name = "bevy_math_bms_bindings"
174+
version_group = "main"
175+
176+
[[package]]
177+
name = "bevy_mesh_bms_bindings"
178+
version_group = "main"
179+
180+
[[package]]
181+
name = "bevy_pbr_bms_bindings"
182+
version_group = "main"
183+
184+
[[package]]
185+
name = "bevy_picking_bms_bindings"
186+
version_group = "main"
187+
188+
[[package]]
189+
name = "bevy_reflect_bms_bindings"
190+
version_group = "main"
191+
192+
[[package]]
193+
name = "bevy_render_bms_bindings"
194+
version_group = "main"
195+
196+
[[package]]
197+
name = "bevy_scene_bms_bindings"
198+
version_group = "main"
199+
200+
[[package]]
201+
name = "bevy_sprite_bms_bindings"
202+
version_group = "main"
203+
204+
[[package]]
205+
name = "bevy_text_bms_bindings"
206+
version_group = "main"
207+
208+
[[package]]
209+
name = "bevy_time_bms_bindings"
210+
version_group = "main"
211+
212+
[[package]]
213+
name = "bevy_transform_bms_bindings"
214+
version_group = "main"

0 commit comments

Comments
 (0)