Files
simconnect-sdk-rs/CHANGELOG.md
Mihai Dinculescu 708f6b2ac5 Announce v0.2.0
2022-10-29 14:27:54 +01:00

61 lines
2.1 KiB
Markdown

# Change Log
All notable changes to this project will be documented in this
file. This change log follows the conventions of
[keepachangelog.com][keepachangelog].
## [Unreleased]
## [v0.2.0] - 2022-10-29
### Added
- `Notification::SystemEvent`, `SystemEventRequest` and `SystemEvent` have been added. System Events can be subscribed to by using `SimConnect::subscribe_to_system_event` and unsubscribed from by using `SimConnect::unsubscribe_from_system_event`.
### Changed
- `Notification::Event` has been renamed to `Notification::ClientEvent`.
- `Event` has been renamed to `ClientEvent` and marked as `non_exhaustive`.
## [v0.1.3] - 2022-10-24
### Changed
- `SimConnect::get_next_dispatch` will now return an error of type `SimConnectError::UnimplementedMessageType` instead of panicking on unrecognized notification types.
- `SimConnect::get_next_dispatch` will now return an error of type `SimConnectError::SimConnectException` instead of `Notification::Exception`.
- `SimConnectError::SimConnectUnrecognizedEvent` has been renamed to `SimConnectError::UnimplementedEventType`.
- `#[non_exhaustive]` has been added to the `SimConnectError` and `Notification` enums.
- The tracing information has been adjusted to be at the `info` and `debug` levels instead of `info`.
## [v0.1.2] - 2022-10-22
### Added
- `Condition`, `DataType`, `FacilityType` and `Period` now derive `Debug`.
### Fixed
- Docs.rs build should now pass. Take 2.
## [v0.1.1] - 2022-10-21
### Changed
- The docs and README files have been improved.
### Fixed
- Docs.rs build should now pass.
## [v0.1.0] - 2022-10-20
### Initial Release of simconnect-sdk
[unreleased]: https://github.com/mihai-dinculescu/simconnect-sdk
[v0.2.0]: https://github.com/mihai-dinculescu/simconnect-sdk/tree/v0.2.0
[v0.1.3]: https://github.com/mihai-dinculescu/simconnect-sdk/tree/v0.1.3
[v0.1.2]: https://github.com/mihai-dinculescu/simconnect-sdk/tree/v0.1.2
[v0.1.1]: https://github.com/mihai-dinculescu/simconnect-sdk/tree/v0.1.1
[v0.1.0]: https://github.com/mihai-dinculescu/simconnect-sdk/tree/v0.1.0
[keepachangelog]: https://keepachangelog.com