diff --git a/CHANGELOG.md b/CHANGELOG.md index 77ee22a..7adf758 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ file. This change log follows the conventions of ## [Unreleased] +## [v0.2.1] - 2022-10-29 + ### Added - `#[derive(PartialEq)]` has been added to `Condition`, `DataType`, `FacilityType`, `NotificationGroup`, `Period`, `ViewType`, `ClientEvent`, `SystemEventRequest` and `SystemEvent`. @@ -61,6 +63,7 @@ file. This change log follows the conventions of ### Initial Release of simconnect-sdk [unreleased]: https://github.com/mihai-dinculescu/simconnect-sdk-rs +[v0.2.1]: https://github.com/mihai-dinculescu/simconnect-sdk-rs/tree/v0.2.1 [v0.2.0]: https://github.com/mihai-dinculescu/simconnect-sdk-rs/tree/v0.2.0 [v0.1.3]: https://github.com/mihai-dinculescu/simconnect-sdk-rs/tree/v0.1.3 [v0.1.2]: https://github.com/mihai-dinculescu/simconnect-sdk-rs/tree/v0.1.2 diff --git a/Cargo.lock b/Cargo.lock index 671ca27..ab1e90d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,7 +313,7 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" [[package]] name = "simconnect-sdk" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bindgen", "num_enum", @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "simconnect-sdk-derive" -version = "0.2.0" +version = "0.2.1" dependencies = [ "once_cell", "proc-macro2", @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "simconnect-sdk-examples" -version = "0.2.0" +version = "0.2.1" dependencies = [ "simconnect-sdk", "tracing", diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 878365c..4dc6892 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,10 +1,12 @@ [package] name = "simconnect-sdk-examples" -version = "0.2.0" -authors = ["Mihai Dinculescu "] +version = "0.2.1" edition = "2021" -description = "SimConnect SDK Examples" license = "MIT" +authors = ["Mihai Dinculescu "] +description = "SimConnect SDK Examples" +readme = "README.md" +repository = "https://github.com/mihai-dinculescu/simconnect-sdk-rs" publish = false [[bin]] diff --git a/simconnect-sdk-derive/Cargo.toml b/simconnect-sdk-derive/Cargo.toml index b5a14f5..27f0759 100644 --- a/simconnect-sdk-derive/Cargo.toml +++ b/simconnect-sdk-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk-derive" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "] diff --git a/simconnect-sdk/Cargo.toml b/simconnect-sdk/Cargo.toml index a45b581..6bad50e 100644 --- a/simconnect-sdk/Cargo.toml +++ b/simconnect-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk" -version = "0.2.0" +version = "0.2.1" 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.2.0", path = "../simconnect-sdk-derive", optional = true } +simconnect-sdk-derive = { version = "=0.2.1", path = "../simconnect-sdk-derive", optional = true } [package.metadata.docs.rs] features = ["derive"]