Skip to content

Commit

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

## Documentation

- Fix formatting in crate example

## [0.20.0](https://github.com/actuate-rs/actuate/compare/actuate-v0.19.1...actuate-v0.20.0) - 2024-12-13

## 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.20.0"
version = "0.20.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A reactive user-interface framework"
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
//! let count = use_mut(&cx, || cx.me().start);
//!
//! material_ui((
//! text::headline(format!("High five count: {}", count)),
//! button(text::label("Up high")).on_click(move || SignalMut::update(count, |x| *x += 1)),
//! button(text::label("Down low")).on_click(move || SignalMut::update(count, |x| *x -= 1)),
//! text::headline(format!("High five count: {}", count)),
//! button(text::label("Up high")).on_click(move || SignalMut::update(count, |x| *x += 1)),
//! button(text::label("Down low")).on_click(move || SignalMut::update(count, |x| *x -= 1)),
//! if *count == 0 {
//! Some(text::label("Gimme five!"))
//! } else {
Expand Down

0 comments on commit 7ef9969

Please sign in to comment.