Skip to content

Commit

Permalink
chore: publish actuate-v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthunz committed Dec 3, 2024
1 parent 20897dc commit afcea8c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ 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.14.0](https://github.com/actuate-rs/actuate/compare/actuate-v0.13.0...actuate-v0.14.0) - 2024-12-03

### Breaking Changes

- Remove unsound `Compose` impl for `Map` and create `MapUnchecked` struct
- The original `Compose` impl for `Map` would cause undefined behavior if multiple references to the same composable were used. The new unsafe `MapUnchecked` keeps this functionality for low-level components, where the documented safety contract can be checked. However, for most composables I now see `Compose + Clone` being a typical pattern (which I think is fine given some composables only copy references when cloned, and references to composables can still be passed around).

### Fixes

- Impl re-composition when the type has changed in `DynCompose` (7d41100)

### Documentation

- Update docs for `Spawn` composable (205b88a)
- Add example to showcase `DynCompose` (7d41100)

## [0.13.0](https://github.com/actuate-rs/actuate/compare/actuate-v0.12.0...actuate-v0.13.0) - 2024-12-02

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actuate"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A reactive user-interface framework"
Expand Down

0 comments on commit afcea8c

Please sign in to comment.