Skip to content

Commit

Permalink
chore: bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tqwewe committed Jun 25, 2024
1 parent f9f33ff commit 1ca41a9
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.0] - 2024-06-25


### <!-- 0 -->Added

- **BREAKING:** Add support for bounded/unbounded mailboxes (#29) #29
- Add `Send + 'static` bounds to `Reply` trait [</>](https://github.com/tqwewe/kameo/commit/382a118966308697bfa4ca72dedacadc83107554)
- Add pubsub actor (#31) [</>](https://github.com/tqwewe/kameo/commit/27533843726f787c042425bacc2306a28e3f96b6)
- Add support for async pool factory functions (#33) #33
- Add async spawn_with function (#34) #34

### <!-- 1 -->Changed

- **BREAKING:** Return `SendError` from send methods allowing replies to be received blocking (#27) #27

### <!-- 3 -->Fixed

- Buffered messages not being applied correctly (#32) #32

### <!-- 5 -->Misc

- Update CHANGELOG.md [</>](https://github.com/tqwewe/kameo/commit/b059d59d4708d86ae00c5987fe682d8a36020b2f)
- Move crates out of nested `crates` dir [</>](https://github.com/tqwewe/kameo/commit/4d668657e26df2afde0a6acd44fe2f9f083e7453)

## [0.8.1] - 2024-05-24


Expand Down Expand Up @@ -206,6 +230,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Add support for stable rust [</>](https://github.com/tqwewe/kameo/commit/0d3e66c47ab04d435bf44c356b1e0ff53f78e43e)

[0.9.0]: https://github.com/tqwewe/kameo/compare/v0.8.1..v0.9.0
[0.8.1]: https://github.com/tqwewe/kameo/compare/v0.8.0..v0.8.1
[0.8.0]: https://github.com/tqwewe/kameo/compare/v0.7.0..v0.8.0
[0.7.0]: https://github.com/tqwewe/kameo/compare/v0.6.0..v0.7.0
Expand Down
4 changes: 2 additions & 2 deletions kameo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kameo"
description = "Fault-tolerant Async Actors Built on Tokio"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
readme = "../../README.md"
repository = "https://github.com/tqwewe/kameo"
Expand All @@ -10,7 +10,7 @@ categories = ["asynchronous", "concurrency", "rust-patterns"]
keywords = ["actor", "tokio"]

[dependencies]
kameo_macros = { version = "0.8.1", path = "../kameo_macros" }
kameo_macros = { version = "0.9.0", path = "../kameo_macros" }

dyn-clone = "1.0"
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion kameo_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kameo_macros"
description = "Fault-tolerant Async Actors Built on Tokio macros"
version = "0.8.1"
version = "0.9.0"
readme = "../../README.md"
repository = "https://github.com/tqwewe/kameo"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 1ca41a9

Please sign in to comment.