chore: release v0.1.6 (#13)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2025-12-05 03:11:41 +01:00 committed by GitHub
parent 11111c9dbb
commit 61ab093a93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 2 deletions

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.1.6](https://github.com/JasterV/event_bus.rs/compare/v0.1.5...v0.1.6) - 2025-12-05
### Other
- we do not need to use an AtomicIsize
- *(deps)* bump Swatinem/rust-cache from 2.8.1 to 2.8.2 ([#3](https://github.com/JasterV/event_bus.rs/pull/3))
## [0.1.5](https://github.com/JasterV/event_bus.rs/compare/v0.1.4...v0.1.5) - 2025-12-01 ## [0.1.5](https://github.com/JasterV/event_bus.rs/compare/v0.1.4...v0.1.5) - 2025-12-01
### Other ### Other

2
Cargo.lock generated
View file

@ -164,7 +164,7 @@ dependencies = [
[[package]] [[package]]
name = "event_bus_rs" name = "event_bus_rs"
version = "0.1.5" version = "0.1.6"
dependencies = [ dependencies = [
"async-broadcast", "async-broadcast",
"async-stream", "async-stream",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "event_bus_rs" name = "event_bus_rs"
version = "0.1.5" version = "0.1.6"
edition = "2024" edition = "2024"
description = "A runtime-agnostic, async, and thread-safe event bus for Rust." description = "A runtime-agnostic, async, and thread-safe event bus for Rust."
keywords = ["event_bus", "pubsub", "event", "messaging", "event_based"] keywords = ["event_bus", "pubsub", "event", "messaging", "event_based"]