Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 16, 2024
1 parent dc4f86e commit 7160c8f
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 9 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0-alpha.8](https://github.com/actuate-rs/actuate/compare/actuate-v0.4.0-alpha.7...actuate-v0.4.0-alpha.8) - 2024-11-16

### Other

- Create `FromIter` composable ([#38](https://github.com/actuate-rs/actuate/pull/38))
- Fix `Compose` impl for `Option` ([#40](https://github.com/actuate-rs/actuate/pull/40))
- Derive Data for remaining structs
- Update README example
- Make `ScopeState` invariant ([#37](https://github.com/actuate-rs/actuate/pull/37))
- Multi-window support ([#30](https://github.com/actuate-rs/actuate/pull/30))
- Remove listeners on drop
- Update Memo to use Memoized trait

## [0.4.0-alpha.7](https://github.com/actuate-rs/actuate/compare/actuate-v0.4.0-alpha.6...actuate-v0.4.0-alpha.7) - 2024-11-16

### Other
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actuate"
version = "0.4.0-alpha.7"
version = "0.4.0-alpha.8"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A reactive user-interface framework"
Expand All @@ -19,8 +19,8 @@ members = [
]

[dependencies]
actuate-core = { version = "0.3.0", path = "crates/actuate-core" }
actuate-winit = { version = "0.1.4", path = "crates/actuate-winit" }
actuate-core = { version = "0.4.0", path = "crates/actuate-core" }
actuate-winit = { version = "0.1.5", path = "crates/actuate-winit" }
parley = "0.2.0"
peniko = "0.2.0"
pollster = "0.4.0"
Expand Down
14 changes: 14 additions & 0 deletions crates/actuate-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/actuate-rs/actuate/compare/actuate-core-v0.3.0...actuate-core-v0.4.0) - 2024-11-16

### Other

- Create `FromIter` composable ([#38](https://github.com/actuate-rs/actuate/pull/38))
- Fix `Compose` impl for `Option` ([#40](https://github.com/actuate-rs/actuate/pull/40))
- Mark Any_compose::any_compose as unsafe
- Make `ScopeState` invariant ([#37](https://github.com/actuate-rs/actuate/pull/37))
- Clean up tracing
- Make Update FnOnce ([#31](https://github.com/actuate-rs/actuate/pull/31))
- Make Mut only have one pointer ([#32](https://github.com/actuate-rs/actuate/pull/32))
- Impl Memoize for Ref
- Update Memo to use Memoized trait

## [0.3.0](https://github.com/actuate-rs/actuate/compare/actuate-core-v0.2.2...actuate-core-v0.3.0) - 2024-11-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/actuate-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actuate-core"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A reactivity framework"
Expand Down
8 changes: 8 additions & 0 deletions crates/actuate-winit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.5](https://github.com/actuate-rs/actuate/compare/actuate-winit-v0.1.4...actuate-winit-v0.1.5) - 2024-11-16

### Other

- Fix `Compose` impl for `Option` ([#40](https://github.com/actuate-rs/actuate/pull/40))
- Batch updates with a separate thread ([#36](https://github.com/actuate-rs/actuate/pull/36))
- Make Update FnOnce ([#31](https://github.com/actuate-rs/actuate/pull/31))

## [0.1.4](https://github.com/actuate-rs/actuate/compare/actuate-winit-v0.1.3...actuate-winit-v0.1.4) - 2024-11-16

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/actuate-winit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actuate-winit"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
description = "Winit window bindings for Actuate"
license = "MIT OR Apache-2.0"
Expand All @@ -11,7 +11,7 @@ tracing = ["dep:tracing"]
default = ["tracing"]

[dependencies]
actuate-core = { version = "0.3.0", path = "../actuate-core" }
actuate-core = { version = "0.4.0", path = "../actuate-core" }
tracing = { version = "0.1.40", optional = true }
winit = "0.30.5"

Expand Down

0 comments on commit 7160c8f

Please sign in to comment.