diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f6ba26..537b52c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/JasterV/event_bus.rs/compare/v0.1.4...v0.1.5) - 2025-12-01 + +### Other + +- do not enforce the internal key of RcMap to be Clone +- make more clear internally the management of the channel + ## [0.1.4](https://github.com/JasterV/event_bus.rs/compare/v0.1.3...v0.1.4) - 2025-12-01 ### Other diff --git a/Cargo.lock b/Cargo.lock index 35379e2..b36fd8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -164,7 +164,7 @@ dependencies = [ [[package]] name = "event_bus_rs" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-broadcast", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 1be8d0d..432ee7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "event_bus_rs" -version = "0.1.4" +version = "0.1.5" edition = "2024" description = "A runtime-agnostic, async, and thread-safe event bus for Rust." keywords = ["event_bus", "pubsub", "event", "messaging", "event_based"]