From d65af9d9b35f40f6104c3bcd1d63b5adc88aa8ba Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Mon, 14 Nov 2022 14:05:16 +0900 Subject: [PATCH] Bump up version number to 0.10.0 --- 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 86d6fea..9d227a4 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.10.0] - 2022-11-14 + ### Changed - **BREAKING CHANGE:** Update to the new obs-websocket v5 API, which is a complete rewrite, so @@ -200,7 +202,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.9.1...HEAD +[Unreleased]: https://github.com/dnaka91/obws/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/dnaka91/obws/compare/v0.9.1...v0.10.0 [0.9.1]: https://github.com/dnaka91/obws/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/dnaka91/obws/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/dnaka91/obws/compare/v0.7.0...v0.8.0 diff --git a/Cargo.toml b/Cargo.toml index b36a7c4..48a49a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obws" -version = "0.10.0-beta.4" +version = "0.10.0" authors = ["Dominik Nakamura "] edition = "2021" rust-version = "1.62" diff --git a/README.md b/README.md index 709ce94..85fd676 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.10.0-beta.4` or add it manually to your +Add `obws` to your project with `cargo add obws@0.10.0` or add it manually to your `Cargo.toml`: ```toml [dependencies] -obws = "0.10.0-beta.4" +obws = "0.10.0" ``` In addition, you will need to use the latest [tokio](https://tokio.rs) runtime to use this library