Skip to content

Commit ab7cef1

Browse files
committed
Merge remote-tracking branch 'origin/main' into staging
2 parents 3e81e14 + c433e18 commit ab7cef1

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

crates/bevy_system_reflection/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.2.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.1.2-bevy_system_reflection...v0.2.0-bevy_system_reflection) - 2025-08-13
11+
12+
### Added
13+
14+
- [**breaking**] Update to Bevy 0.16 ([#422](https://github.com/makspll/bevy_mod_scripting/pull/422))

crates/bevy_system_reflection/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_system_reflection"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
edition = "2024"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"

crates/ladfile_builder/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.3.4-ladfile_builder...v0.4.0-ladfile_builder) - 2025-08-13
11+
12+
### Added
13+
14+
- [**breaking**] Update to Bevy 0.16 ([#422](https://github.com/makspll/bevy_mod_scripting/pull/422))
15+
1016
## [0.3.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.3.0-ladfile_builder...v0.3.1-ladfile_builder) - 2025-03-29
1117

1218
### Added

crates/ladfile_builder/src/lib.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,6 @@ use bevy_mod_scripting_core::{
2121
};
2222
use bevy_reflect::{NamedField, TypeInfo, TypeRegistry, Typed, UnnamedField};
2323
use ladfile::*;
24-
use std::{
25-
any::TypeId,
26-
borrow::Cow,
27-
cmp::{max, min},
28-
collections::HashMap,
29-
ffi::OsString,
30-
path::PathBuf,
31-
};
3224

3325
/// We can assume that the types here will be either primitives
3426
/// or reflect types, as the rest will be covered by typed wrappers

0 commit comments

Comments
 (0)