diff --git a/README.md b/README.md index 1128961..56d0ef0 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Tick-aware Async Runtime for Screeps Add `screeps-async` to your `Cargo.toml` ```toml [dependencies] -screeps-async = "0.3.0" +screeps-async = "0.3.1" ``` **IMPORTANT**: This project is very much in an early stage and significant, breaking changes may diff --git a/screeps-async/CHANGELOG.md b/screeps-async/CHANGELOG.md index 046c134..b766c91 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.3.1](https://github.com/rustyscreeps/screeps-async/compare/screeps-async-v0.3.0...screeps-async-v0.3.1) - 2024-09-21 + +### Other + +- Update screeps-game-api to 0.22.0 ([#7](https://github.com/rustyscreeps/screeps-async/pull/7)) + ## [0.3.0](https://github.com/rustyscreeps/screeps-async/compare/screeps-async-v0.2.0...screeps-async-v0.3.0) - 2024-03-23 ### Added diff --git a/screeps-async/Cargo.toml b/screeps-async/Cargo.toml index 57c4ffa..de03c86 100644 --- a/screeps-async/Cargo.toml +++ b/screeps-async/Cargo.toml @@ -3,7 +3,7 @@ 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.3.0" +version = "0.3.1" edition = "2021" license = "MIT" readme = "../README.md" diff --git a/screeps-async/src/lib.rs b/screeps-async/src/lib.rs index c9f260e..465dd87 100644 --- a/screeps-async/src/lib.rs +++ b/screeps-async/src/lib.rs @@ -6,7 +6,7 @@ //! Add `screeps-async` to your `Cargo.toml` //! ```toml //! [dependencies] -//! screeps-async = "0.3.0" +//! screeps-async = "0.3.1" //! ``` //! //! # The [`#[screeps_async::main]`](main) macro