From e588bf3f36e42617a2e07db17f8bb287d85d2e4a Mon Sep 17 00:00:00 2001 From: "release-plz-scottbot95[bot]" <161648441+release-plz-scottbot95[bot]@users.noreply.github.com> Date: Sun, 3 Mar 2024 07:16:05 +0000 Subject: [PATCH] chore: release --- screeps-async-macros/CHANGELOG.md | 5 +++++ screeps-async-macros/Cargo.toml | 2 +- screeps-async/CHANGELOG.md | 6 ++++++ screeps-async/Cargo.toml | 4 ++-- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/screeps-async-macros/CHANGELOG.md b/screeps-async-macros/CHANGELOG.md index 17b3372..efc7582 100644 --- a/screeps-async-macros/CHANGELOG.md +++ b/screeps-async-macros/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/rustyscreeps/screeps-async/compare/screeps-async-macros-v0.1.0...screeps-async-macros-v0.1.1) - 2024-03-03 + +### Fixed +- Add missing README to crate artifacts + ## [0.1.0](https://github.com/rustyscreeps/screeps-async/releases/tag/screeps-async-macros-v0.1.0) - 2024-03-03 Initial Release! diff --git a/screeps-async-macros/Cargo.toml b/screeps-async-macros/Cargo.toml index 5a42372..53363e3 100644 --- a/screeps-async-macros/Cargo.toml +++ b/screeps-async-macros/Cargo.toml @@ -3,7 +3,7 @@ name = "screeps-async-macros" description = "Macros for screeps-async" repository = "https://github.com/rustyscreeps/screeps-async" homepage = "https://github.com/rustyscreeps/screeps-async" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT" readme = "../README.md" diff --git a/screeps-async/CHANGELOG.md b/screeps-async/CHANGELOG.md index cfd8cc6..ecd2140 100644 --- a/screeps-async/CHANGELOG.md +++ b/screeps-async/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/rustyscreeps/screeps-async/compare/screeps-async-v0.1.0...screeps-async-v0.1.1) - 2024-03-03 + +### Fixed +- Typo in module docs +- Add missing README to crate artifacts + ## [0.1.0](https://github.com/rustyscreeps/screeps-async/releases/tag/screeps-async-v0.1.0) - 2024-03-03 Initial Release! diff --git a/screeps-async/Cargo.toml b/screeps-async/Cargo.toml index 4bb8163..dec2f55 100644 --- a/screeps-async/Cargo.toml +++ b/screeps-async/Cargo.toml @@ -3,13 +3,13 @@ name = "screeps-async" description = "Tick-aware Async runtime for Screeps" repository = "https://github.com/rustyscreeps/screeps-async" homepage = "https://github.com/rustyscreeps/screeps-async" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT" readme = "../README.md" [dependencies] -screeps-async-macros = { version = "0.1.0", path = "../screeps-async-macros" } +screeps-async-macros = { version = "0.1.1", path = "../screeps-async-macros" } async-task = "4.7" flume = { version = "0.11", default-features = false }