From befbb8c75f808b470dfb04d6fa8eca407cd94a7f Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Thu, 22 Jun 2023 10:23:07 +0900 Subject: [PATCH] Bump up version number to 0.11.2 --- 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 f895c56..f46b6c4 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.2] - 2023-06-22 + ### Fixed - Some of the bitflag values like `FontFlags`, `Alignment` and `EventSubscription` were not always serialized as numbers but their string form, causing errors in the respective request or response. @@ -229,7 +231,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.1...HEAD +[Unreleased]: https://github.com/dnaka91/obws/compare/v0.11.2...HEAD +[0.11.2]: https://github.com/dnaka91/obws/compare/v0.11.1...v0.11.2 [0.11.1]: https://github.com/dnaka91/obws/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/dnaka91/obws/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/dnaka91/obws/compare/v0.9.1...v0.10.0 diff --git a/Cargo.toml b/Cargo.toml index c2d50e7..a2aac57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obws" -version = "0.11.1" +version = "0.11.2" authors = ["Dominik Nakamura "] edition = "2021" rust-version = "1.68" diff --git a/README.md b/README.md index d5c43d5..a2544ee 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.1` or add it manually to your +Add `obws` to your project with `cargo add obws@0.11.2` or add it manually to your `Cargo.toml`: ```toml [dependencies] -obws = "0.11.1" +obws = "0.11.2" ``` In addition, you will need to use the latest [tokio](https://tokio.rs) runtime to use this library