Announce v0.2.0

This commit is contained in:
Mihai Dinculescu
2022-10-29 14:27:54 +01:00
parent 2809917a93
commit 708f6b2ac5
7 changed files with 22 additions and 19 deletions

View File

@@ -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`.
@@ -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

26
Cargo.lock generated
View File

@@ -94,9 +94,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "libc"
version = "0.2.135"
version = "0.2.137"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c"
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
[[package]]
name = "libloading"
@@ -181,9 +181,9 @@ dependencies = [
[[package]]
name = "once_cell"
version = "1.15.0"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
[[package]]
name = "overload"
@@ -270,15 +270,15 @@ checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
[[package]]
name = "serde"
version = "1.0.145"
version = "1.0.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
[[package]]
name = "serde_derive"
version = "1.0.145"
version = "1.0.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
dependencies = [
"proc-macro2",
"quote",
@@ -287,9 +287,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.86"
version = "1.0.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074"
checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
dependencies = [
"itoa",
"ryu",
@@ -313,7 +313,7 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
[[package]]
name = "simconnect-sdk"
version = "0.1.3"
version = "0.2.0"
dependencies = [
"bindgen",
"num_enum",
@@ -324,7 +324,7 @@ dependencies = [
[[package]]
name = "simconnect-sdk-derive"
version = "0.1.3"
version = "0.2.0"
dependencies = [
"once_cell",
"proc-macro2",
@@ -336,7 +336,7 @@ dependencies = [
[[package]]
name = "simconnect-sdk-examples"
version = "0.1.3"
version = "0.2.0"
dependencies = [
"simconnect-sdk",
"tracing",

View File

@@ -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

View File

@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk-examples"
version = "0.1.3"
version = "0.2.0"
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
edition = "2021"
description = "SimConnect SDK Examples"

View File

@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk-derive"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]

View File

@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
@@ -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"]

View File

@@ -4,7 +4,7 @@
//! ## Usage
//! ```toml
//! [dependencies]
//! simconnect-sdk = { version = "0.1", features = ["derive"] }
//! simconnect-sdk = { version = "0.2", features = ["derive"] }
//! ```
//!
//! ```rust,no_run