From effbd6dcae69c795d905cc13b636c5bdb9b17326 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 20:24:30 -0500 Subject: [PATCH] chore(actuate): release v0.6.0 (#57) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46c42e6..1cd3bc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/actuate-rs/actuate/compare/actuate-v0.5.0...actuate-v0.6.0) - 2024-11-19 + +### Other + +- Drop tasks before scope +- Impl Data for HashMap +- Quick fix for executor context +- Add Composer::lock +- Fix docs for use_task +- Update examples +- Update examples +- Update CI +- Use additive features by default +- Impl more std traits for Cow and RefMap and add borrowing example +- Update tracing +- Clean up +- Update docs for use_context +- Merge with main +- Export text module +- Require Sync for pointers to impl Send + ## [0.5.0](https://github.com/actuate-rs/actuate/compare/actuate-v0.4.0...actuate-v0.5.0) - 2024-11-18 ### Other diff --git a/Cargo.lock b/Cargo.lock index 3c5c635..81614e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -20,7 +20,7 @@ checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046" [[package]] name = "actuate" -version = "0.5.0" +version = "0.6.0" dependencies = [ "actuate-macros", "parley", diff --git a/Cargo.toml b/Cargo.toml index 743dfc7..518dbfe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actuate" -version = "0.5.0" +version = "0.6.0" edition = "2021" license = "MIT OR Apache-2.0" description = "A reactive user-interface framework"