From bb087cc755f64b6962c596552915cbaf2ce29a09 Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Mon, 4 Sep 2023 11:21:44 +0900 Subject: [PATCH] Bump up version number to 0.11.5 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e59e3e..d0a88e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.11.5] - 2023-09-04 + ### Changed - Explicitly unsubscribe from all events when the `events` feature isn't enabled. By default, `obs-websocket` sends all possible events, but those are not needed without the events feature flag in obws. @@ -252,7 +254,8 @@ is currently in progress on the `v5-api` branch and the release is expected to b - Initial release. -[Unreleased]: https://github.com/dnaka91/obws/compare/v0.11.4...HEAD +[Unreleased]: https://github.com/dnaka91/obws/compare/v0.11.5...HEAD +[0.11.5]: https://github.com/dnaka91/obws/compare/v0.11.4...v0.11.5 [0.11.4]: https://github.com/dnaka91/obws/compare/v0.11.3...v0.11.4 [0.11.3]: https://github.com/dnaka91/obws/compare/v0.11.2...v0.11.3 [0.11.2]: https://github.com/dnaka91/obws/compare/v0.11.1...v0.11.2 diff --git a/Cargo.toml b/Cargo.toml index fdce933..d3306ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obws" -version = "0.11.4" +version = "0.11.5" authors = ["Dominik Nakamura "] edition = "2021" rust-version = "1.68" diff --git a/README.md b/README.md index 863b5f2..8a2cb68 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,12 @@ Remote control OBS with the [obs-websocket] plugin from Rust 🦀. ## Usage -Add `obws` to your project with `cargo add obws@0.11.4` or add it manually to your +Add `obws` to your project with `cargo add obws@0.11.5` or add it manually to your `Cargo.toml`: ```toml [dependencies] -obws = "0.11.4" +obws = "0.11.5" ``` In addition, you will need to use the latest [tokio](https://tokio.rs) runtime to use this library