From fbaca5f18826d75c644272fc857d542883c76d27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 18:08:08 -0500 Subject: [PATCH] chore: release (#39) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- packages/iocraft-macros/CHANGELOG.md | 6 ++++++ packages/iocraft-macros/Cargo.toml | 2 +- packages/iocraft/CHANGELOG.md | 6 ++++++ packages/iocraft/Cargo.toml | 4 ++-- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/packages/iocraft-macros/CHANGELOG.md b/packages/iocraft-macros/CHANGELOG.md index 279dcf7..c751c20 100644 --- a/packages/iocraft-macros/CHANGELOG.md +++ b/packages/iocraft-macros/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.8](https://github.com/ccbrown/iocraft/compare/iocraft-macros-v0.1.7...iocraft-macros-v0.1.8) - 2024-12-10 + +### Added + +- make async functions send+sync (#38) + ## [0.1.7](https://github.com/ccbrown/iocraft/compare/iocraft-macros-v0.1.6...iocraft-macros-v0.1.7) - 2024-11-01 ### Added diff --git a/packages/iocraft-macros/Cargo.toml b/packages/iocraft-macros/Cargo.toml index 0f465f8..e597825 100644 --- a/packages/iocraft-macros/Cargo.toml +++ b/packages/iocraft-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iocraft-macros" -version = "0.1.7" +version = "0.1.8" edition = "2021" license = "MIT OR Apache-2.0" description = "Macro implementations for the iocraft crate." diff --git a/packages/iocraft/CHANGELOG.md b/packages/iocraft/CHANGELOG.md index cd2abaa..0421531 100644 --- a/packages/iocraft/CHANGELOG.md +++ b/packages/iocraft/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/ccbrown/iocraft/compare/iocraft-v0.4.1...iocraft-v0.5.0) - 2024-12-10 + +### Added + +- make async functions send+sync (#38) + ## [0.4.1](https://github.com/ccbrown/iocraft/compare/iocraft-v0.4.0...iocraft-v0.4.1) - 2024-12-05 ### Added diff --git a/packages/iocraft/Cargo.toml b/packages/iocraft/Cargo.toml index 04fc4be..e663786 100644 --- a/packages/iocraft/Cargo.toml +++ b/packages/iocraft/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iocraft" -version = "0.4.1" +version = "0.5.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Create beautifully crafted CLI programs and text output with a declarative React-like Rust API." @@ -10,7 +10,7 @@ repository = "https://github.com/ccbrown/iocraft" crossterm = { version = "0.28.1", features = ["event-stream"] } futures = "0.3.30" taffy = { version = "0.5.2", default-features = false, features = ["std", "flexbox", "taffy_tree"] } -iocraft-macros = { version = "0.1.7", path = "../iocraft-macros" } +iocraft-macros = { version = "0.1.8", path = "../iocraft-macros" } bitflags = "2.6.0" unicode-width = "0.1.13" textwrap = "0.16.1"