Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #5

Merged
merged 1 commit into from
Mar 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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