diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d7580d..55a3a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.17.0](https://github.com/actuate-rs/actuate/compare/actuate-v0.16.1...actuate-v0.17.0) - 2024-12-06 + +## Breaking changes + + - Move `Modifier` and `Modify` to ecs module (behind new picking feature) (35b10ea) + - These items can be useful for other design systems than Material 3 + - Call `on_insert` on every insertion of a spawned bundle (this now requires `Fn` instead of `FnOnce`) (533da07) + +## Fixes + + - Revert from breadth-first traversal of the composition to depth-first (8b3acd2) + - Update styling for `Container` (9cca3a7) + ## [0.16.1](https://github.com/actuate-rs/actuate/compare/actuate-v0.16.0...actuate-v0.16.1) - 2024-12-05 ## Features diff --git a/Cargo.lock b/Cargo.lock index 92f110e..ce9fb96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "actuate" -version = "0.16.1" +version = "0.17.0" dependencies = [ "actuate-macros", "ahash", diff --git a/Cargo.toml b/Cargo.toml index 9919456..3bc84ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actuate" -version = "0.16.1" +version = "0.17.0" edition = "2021" license = "MIT OR Apache-2.0" description = "A reactive user-interface framework"