From 59ef94bac40f1c48556453810a36be2de814745a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Nov 2025 15:28:05 +0100 Subject: [PATCH] chore: release v0.1.2 (#6) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9ce62c..502f579 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.2](https://github.com/JasterV/event_bus.rs/compare/v0.1.1...v0.1.2) - 2025-11-28 + +### Other + +- update docs + ## [0.1.1](https://github.com/JasterV/event_bus.rs/compare/v0.1.0...v0.1.1) - 2025-11-28 ### Other diff --git a/Cargo.lock b/Cargo.lock index 4966547..a0a256d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -100,7 +100,7 @@ dependencies = [ [[package]] name = "event_bus_rs" -version = "0.1.1" +version = "0.1.2" dependencies = [ "async-broadcast", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 68e7648..70e1df5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "event_bus_rs" -version = "0.1.1" +version = "0.1.2" edition = "2024" description = "A runtime-agnostic, async, and thread-safe event bus for Rust." keywords = ["event_bus", "pubsub", "event", "messaging", "event_based"]