Skip to content

Commit

Permalink
chore: bump to version 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tqwewe committed Oct 11, 2024
1 parent df1bfbf commit aa3190f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ 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.12.0-alpha.1] - 2024-10-09
## [0.12.0] - 2024-10-11

* @shusvr made their first contribution
* @shusvr made their first contribution in #60
* @marcaddeo made their first contribution in #47

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

- Add `ActorRef::wait_startup` method (#63)

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

- **BREAKING:** Make `Links` private (#57)
Expand Down Expand Up @@ -343,7 +347,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.12.0-alpha.1]: https://github.com/tqwewe/kameo/compare/v0.11.0..0.12.0-alpha.1
[0.12.0]: https://github.com/tqwewe/kameo/compare/v0.12.0-alpha.1..0.12.0
[0.11.0]: https://github.com/tqwewe/kameo/compare/v0.10.0..v0.11.0
[0.10.0]: https://github.com/tqwewe/kameo/compare/v0.9.0..v0.10.0
[0.9.0]: https://github.com/tqwewe/kameo/compare/v0.8.1..v0.9.0
Expand Down
7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ lto = true
opt-level = 3
codegen-units = 1


[package.metadata.docs.rs]
all-features = true

[package]
name = "kameo"
description = "Fault-tolerant Async Actors Built on Tokio"
version = "0.12.0-alpha.1"
version = "0.12.0"
edition = "2021"
rust-version = "1.79"
readme = "README.md"
Expand All @@ -27,7 +26,7 @@ keywords = ["actor", "tokio"]
remote = ["dep:libp2p", "dep:libp2p-identity", "dep:linkme", "dep:rmp-serde", "dep:internment"]

[dependencies]
kameo_macros = { version = "0.12.0-alpha.1", path = "./macros" }
kameo_macros = { version = "0.12.0", path = "./macros" }

dyn-clone = "1.0"
futures = "0.3"
Expand All @@ -37,11 +36,11 @@ libp2p = { version = "0.54.1", features = ["cbor", "dns", "kad", "mdns", "macros
libp2p-identity = { version = "0.2.9", features = ["rand", "rsa"], optional = true }
linkme = { version= "0.3.28", optional = true }
once_cell = "1.19"
rmp-serde = { version = "1.3.0", optional = true }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.37", features = ["macros", "rt", "sync", "time", "tracing"] }
tokio-stream = "0.1"
tracing = "0.1"
rmp-serde = { version = "1.3.0", optional = true }

[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
Expand Down
2 changes: 1 addition & 1 deletion 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.12.0-alpha.1"
version = "0.12.0"
readme = "../README.md"
repository = "https://github.com/tqwewe/kameo"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit aa3190f

Please sign in to comment.