Skip to content

Commit

Permalink
chore: release (#22)
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 16, 2024
1 parent a28da94 commit 402eab5
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 12 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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

- More efficient Canvas reactions
- Update example and docs
- Refactor macro for fns
- Inherit TextContext in Window and update example
- Create ContextError struct and return Result from use_context
- Replace Hash with new Memoize trait in use_memo
- Make font size contextual and update example
- Render text directly with Vello and Parley
- Update CI
- Make the View trait more composable
- Simplify re-render logic for Canvas
- Update FUNDING.yml
- Update README.md
- Safely impl Compose for Map<C>
- Update README.md
- Add FUNDING.yml
- Impl Data for fns
- Clean up
- Use Data macro in more places
- Create Draw trait
- Add background color modifier
- Refactor
- Add font size param
- Clean up

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

### Other
Expand Down
8 changes: 4 additions & 4 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.6"
version = "0.4.0-alpha.7"
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.2.2", path = "crates/actuate-core" }
actuate-winit = { version = "0.1.3", path = "crates/actuate-winit" }
actuate-core = { version = "0.3.0", path = "crates/actuate-core" }
actuate-winit = { version = "0.1.4", path = "crates/actuate-winit" }
parley = "0.2.0"
peniko = "0.2.0"
pollster = "0.4.0"
Expand Down
21 changes: 21 additions & 0 deletions crates/actuate-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Other

- More efficient Canvas reactions
- Update example and docs
- Refactor macro for fns
- Create ContextError struct and return Result from use_context
- Replace Hash with new Memoize trait in use_memo
- Create `RefMap` enum ([#27](https://github.com/actuate-rs/actuate/pull/27))
- Fix DynCompose test case
- Test Memo composable
- Safely impl Compose for Map<C>
- Impl Compose for Option<C>
- Impl Data for fns
- Clean up
- Use Data macro in more places
- Refactor macro
- Add font size param
- Impl ptr-based change detection for Mut

## [0.2.2](https://github.com/actuate-rs/actuate/compare/actuate-core-v0.2.1...actuate-core-v0.2.2) - 2024-11-14

### Other
Expand Down
4 changes: 2 additions & 2 deletions 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.2.2"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A reactivity framework"
Expand All @@ -11,7 +11,7 @@ tracing = ["dep:tracing"]
default = ["tracing"]

[dependencies]
actuate-macros = { version = "0.1.2", path = "../actuate-macros" }
actuate-macros = { version = "0.1.3", path = "../actuate-macros" }
thiserror = "2.0.3"
tracing = { version = "0.1.40", optional = true }

Expand Down
9 changes: 9 additions & 0 deletions crates/actuate-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/actuate-rs/actuate/compare/actuate-macros-v0.1.2...actuate-macros-v0.1.3) - 2024-11-16

### Other

- Test Memo composable
- Safely impl Compose for Map<C>
- Use Data macro in more places
- Refactor macro

## [0.1.2](https://github.com/actuate-rs/actuate/compare/actuate-macros-v0.1.1...actuate-macros-v0.1.2) - 2024-11-13

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/actuate-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "actuate-macros"
description = "Macros for Actuate"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/actuate-rs/actuate"
Expand Down
9 changes: 9 additions & 0 deletions crates/actuate-winit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Other

- Refactor macro for fns
- Create ContextError struct and return Result from use_context
- Replace Hash with new Memoize trait in use_memo
- Safely impl Compose for Map<C>

## [0.1.3](https://github.com/actuate-rs/actuate/compare/actuate-winit-v0.1.2...actuate-winit-v0.1.3) - 2024-11-14

### 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.3"
version = "0.1.4"
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.2.2", path = "../actuate-core" }
actuate-core = { version = "0.3.0", path = "../actuate-core" }
tracing = { version = "0.1.40", optional = true }
winit = "0.30.5"

Expand Down

0 comments on commit 402eab5

Please sign in to comment.