Skip to content

Commit

Permalink
Announce v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mihai-dinculescu committed Oct 29, 2022
1 parent 2809917 commit 708f6b2
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 19 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ file. This change log follows the conventions of

## [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`.
Expand Down Expand Up @@ -50,6 +52,7 @@ file. This change log follows the conventions of
### 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
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ An opinionated SimConnect Client that encapsulates the C API fully and optimizes

```toml
[dependencies]
simconnect-sdk = { version = "0.1", features = ["derive"] }
simconnect-sdk = { version = "0.2", features = ["derive"] }
```

```rust
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk-examples"
version = "0.1.3"
version = "0.2.0"
authors = ["Mihai Dinculescu <[email protected]>"]
edition = "2021"
description = "SimConnect SDK Examples"
Expand Down
2 changes: 1 addition & 1 deletion simconnect-sdk-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk-derive"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["Mihai Dinculescu <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions simconnect-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["Mihai Dinculescu <[email protected]>"]
Expand All @@ -22,7 +22,7 @@ bindgen = "0.61"
num_enum = "0.5"
tracing = "0.1"
thiserror = "1.0"
simconnect-sdk-derive = { version = "=0.1.3", path = "../simconnect-sdk-derive", optional = true }
simconnect-sdk-derive = { version = "=0.2.0", path = "../simconnect-sdk-derive", optional = true }

[package.metadata.docs.rs]
features = ["derive"]
Expand Down
2 changes: 1 addition & 1 deletion simconnect-sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! ## Usage
//! ```toml
//! [dependencies]
//! simconnect-sdk = { version = "0.1", features = ["derive"] }
//! simconnect-sdk = { version = "0.2", features = ["derive"] }
//! ```
//!
//! ```rust,no_run
Expand Down

0 comments on commit 708f6b2

Please sign in to comment.