Skip to content

Commit

Permalink
chore: release (#29)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 17, 2024
1 parent 0ef1490 commit 347f724
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
16 changes: 16 additions & 0 deletions crates/actuate-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ 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-17

### Other

- Reorganize `actuate` crate structure ([#42](https://github.com/actuate-rs/actuate/pull/42))
- Remove layout node on drop in Canvas and add list example
- Merge branch 'main' of https://github.com/actuate-rs/actuate into vec
- 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-17

### 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 347f724

Please sign in to comment.