diff --git a/CHANGELOG.md b/CHANGELOG.md index f39c343..e7aa924 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 173c1a0..671ca27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/README.md b/README.md index 4bf5925..15a7d46 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/examples/Cargo.toml b/examples/Cargo.toml index a2233aa..878365c 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk-examples" -version = "0.1.3" +version = "0.2.0" authors = ["Mihai Dinculescu "] edition = "2021" description = "SimConnect SDK Examples" diff --git a/simconnect-sdk-derive/Cargo.toml b/simconnect-sdk-derive/Cargo.toml index db8d11f..3d83056 100644 --- a/simconnect-sdk-derive/Cargo.toml +++ b/simconnect-sdk-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk-derive" -version = "0.1.3" +version = "0.2.0" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "] diff --git a/simconnect-sdk/Cargo.toml b/simconnect-sdk/Cargo.toml index 5b10a85..dad96d5 100644 --- a/simconnect-sdk/Cargo.toml +++ b/simconnect-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk" -version = "0.1.3" +version = "0.2.0" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "] @@ -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"] diff --git a/simconnect-sdk/src/lib.rs b/simconnect-sdk/src/lib.rs index ef7a108..a0e86a1 100644 --- a/simconnect-sdk/src/lib.rs +++ b/simconnect-sdk/src/lib.rs @@ -4,7 +4,7 @@ //! ## Usage //! ```toml //! [dependencies] -//! simconnect-sdk = { version = "0.1", features = ["derive"] } +//! simconnect-sdk = { version = "0.2", features = ["derive"] } //! ``` //! //! ```rust,no_run