Merge remote-tracking branch 'origin/main' into v5-api

v5-api
Dominik Nakamura 2 years ago
commit 88e91076b5
No known key found for this signature in database
GPG Key ID: E4C6A749B2491910

@ -9,6 +9,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate
## [0.9.1] - 2022-02-25
### Fixed
- Deserialization of Freetype2 and GDI+ failed in some situations, especially when many fields were
not set to a custom value (as OBS omits default values).
Thank you [@peddermaster2](https://github.com/peddermaster2)!
## [0.9.0] - 2021-12-20
This is going to be the last release before the upcoming **obs-websocket v5.0** release. Support
is currently in progress on the `v5-api` branch and the release is expected to be soon.
### Added
- Several new types are available at the `requests::custom` module, that can be used for the generic
`set_source_settings` and `set_transition_settings` requests to provide typed versions for common
sources and transitions out of the box.
- **Note:** These typed versions are not covered by automated tests yet, so careful testing is
advised.
### Changed
- **BREAKING CHANGE:** Updated many dependencies, including `tokio-tungstenite` which included some
changes to the TLS feature.
- **BREAKING CHANGE:** Replace the `chrono` crate with `time` to avoid potential security issues.
This crate only uses the `Duration` type, but the dependency was still switched in case of future
issues.
- Reduce size of the crate bundle by excluding unnecessary files, making downloads from
<https://crates.io> faster.
- Improved on several spelling errors throughout the API docs.
## [0.8.0] - 2021-06-14
### Added
@ -151,7 +183,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release.
[Unreleased]: https://github.com/dnaka91/obws/compare/v0.8.0...HEAD
[Unreleased]: https://github.com/dnaka91/obws/compare/v0.9.1...HEAD
[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
[0.7.0]: https://github.com/dnaka91/obws/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/dnaka91/obws/compare/v0.5.0...v0.6.0

@ -1,6 +1,6 @@
[package]
name = "obws"
version = "0.8.0"
version = "0.9.1"
authors = ["Dominik Nakamura <dnaka91@gmail.com>"]
edition = "2021"
rust-version = "1.61"

@ -3,7 +3,7 @@ sign-tag = true
pre-release-commit-message = "Bump up version number to {{version}}"
tag-message = "Version {{version}}"
no-dev-version = true
dev-version = false
[[pre-release-replacements]]
file = "README.md"

Loading…
Cancel
Save