diff --git a/CHANGELOG.md b/CHANGELOG.md index ceacffc..f9ce62c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/JasterV/event_bus.rs/compare/v0.1.0...v0.1.1) - 2025-11-28 + +### Other + +- update README & docs + ## [0.1.0](https://github.com/JasterV/event_bus.rs/releases/tag/v0.1.0) - 2025-11-28 ### Added diff --git a/Cargo.lock b/Cargo.lock index dc2c165..4966547 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -100,7 +100,7 @@ dependencies = [ [[package]] name = "event_bus_rs" -version = "0.1.0" +version = "0.1.1" dependencies = [ "async-broadcast", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index d1586c5..68e7648 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "event_bus_rs" -version = "0.1.0" +version = "0.1.1" edition = "2024" description = "A runtime-agnostic, async, and thread-safe event bus for Rust." keywords = ["event_bus", "pubsub", "event", "messaging", "event_based"]