Skip to content

Commit 47a0be8

Browse files
chore: release
1 parent da5e7d3 commit 47a0be8

File tree

3 files changed

+35
-35
lines changed

3 files changed

+35
-35
lines changed

Cargo.toml

Lines changed: 10 additions & 10 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.0"
16+
version = "0.16.1"
1717
edition = "2024"
1818
authors = ["Maksymilian Mozolewski <[email protected]>"]
1919
license = "MIT OR Apache-2.0"
@@ -117,19 +117,19 @@ bevy_mod_scripting_display = { workspace = true }
117117
# local crates
118118
script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" }
119119
test_utils = { path = "crates/testing_crates/test_utils" }
120-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.16.0", default-features = false }
121-
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.0" }
120+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.16.1", default-features = false }
121+
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.1" }
122122
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.3.0", default-features = false }
123123
ladfile = { path = "crates/ladfile", version = "0.6.0" }
124-
ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.0" }
125-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.0", default-features = false }
126-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.0", default-features = false }
127-
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.16.0", default-features = false }
128-
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.16.0", default-features = false }
129-
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.16.0", default-features = false }
124+
ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.1" }
125+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.1", default-features = false }
126+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.1", default-features = false }
127+
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.16.1", default-features = false }
128+
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.16.1", default-features = false }
129+
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.16.1", default-features = false }
130130
# bevy
131131

132-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.0" }
132+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.1" }
133133
bevy = { version = "0.16.0", default-features = false }
134134
bevy_math = { version = "0.16.0", default-features = false, features = ["std"] }
135135
bevy_transform = { version = "0.16.0", default-features = false }

crates/bevy_mod_scripting_functions/Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ bevy_mod_scripting_bindings = { workspace = true }
4747
bevy_mod_scripting_display = { workspace = true }
4848
bevy_mod_scripting_asset = { workspace = true }
4949
bevy_mod_scripting_derive = { workspace = true }
50-
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.16.0" }
51-
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.16.0" }
50+
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.16.1" }
51+
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.16.1" }
5252
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.3.0" }
5353

5454
bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] }
@@ -57,28 +57,28 @@ bevy_asset = { workspace = true }
5757
bevy_platform = { workspace = true, features = ["std"] }
5858
bevy_reflect = { workspace = true, features = [] }
5959

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

8383
[lints]
8484
workspace = true

crates/ladfile_builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ladfile_builder"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "Language Agnostic Declaration (LAD) file format for the bevy_mod_scripting crate"
55
edition.workspace = true
66
authors.workspace = true

0 commit comments

Comments
 (0)