Skip to content

Commit

Permalink
chore: release (#5)
Browse files Browse the repository at this point in the history
Co-authored-by: release-plz-scottbot95[bot] <161648441+release-plz-scottbot95[bot]@users.noreply.github.com>
  • Loading branch information
release-plz-scottbot95[bot] authored Mar 23, 2024
1 parent f19a9de commit af3d91f
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Tick-aware Async Runtime for Screeps
Add `screeps-async` to your `Cargo.toml`
```toml
[dependencies]
screeps-async = "0.2.0"
screeps-async = "0.3.0"
```

**IMPORTANT**: This project is very much in an early stage and significant, breaking changes may
Expand Down
5 changes: 5 additions & 0 deletions screeps-async-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/rustyscreeps/screeps-async/compare/screeps-async-macros-v0.1.2...screeps-async-macros-v0.1.3) - 2024-03-23

### Other
- Add docs.rs badge

## [0.1.2](https://github.com/rustyscreeps/screeps-async/compare/screeps-async-macros-v0.1.1...screeps-async-macros-v0.1.2) - 2024-03-05

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion screeps-async-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"
version = "0.1.3"
edition = "2021"
license = "MIT"
readme = "../README.md"
Expand Down
13 changes: 13 additions & 0 deletions screeps-async/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/rustyscreeps/screeps-async/compare/screeps-async-v0.2.0...screeps-async-v0.3.0) - 2024-03-23

### Added
- Add async `RwLock`
- Add `Mutex` ([#4](https://github.com/rustyscreeps/screeps-async/pull/4))

### Fixed
- Refactor test time abstractions to make new version of clippy happy
- Don't try to queue tasks after Runtime is dropped causing panics

### Other
- Add docs.rs badge

## [0.2.0](https://github.com/rustyscreeps/screeps-async/compare/screeps-async-v0.1.1...screeps-async-v0.2.0) - 2024-03-05

### Added
Expand Down
4 changes: 2 additions & 2 deletions screeps-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0"
version = "0.3.0"
edition = "2021"
license = "MIT"
readme = "../README.md"

[dependencies]
screeps-async-macros = { version = "0.1.2", path = "../screeps-async-macros" }
screeps-async-macros = { version = "0.1.3", path = "../screeps-async-macros" }

async-task = "4.7"
flume = { version = "0.11", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion screeps-async/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//! Add `screeps-async` to your `Cargo.toml`
//! ```toml
//! [dependencies]
//! screeps-async = "0.2.0"
//! screeps-async = "0.3.0"
//! ```
//!
//! # The [`#[screeps_async::main]`](main) macro
Expand Down

0 comments on commit af3d91f

Please sign in to comment.