diff --git a/CHANGELOG.md b/CHANGELOG.md index 3749179..47b8619 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,13 @@ file. This change log follows the conventions of ## [Unreleased] +## [v0.2.2] - 2023-02-22 + ### Changed - Updated to MSFS SDK v0.20.5.0. - `SimConnect::get_next_dispatch` now takes a `&mut self` in order to be able to clean up requests that have returned all the results they ever will. -# Fixed +### Fixed - `SimConnect::request_facilities_list` calls now automatically clean up the request after all the data is received. ## [v0.2.1] - 2022-10-29 @@ -70,6 +72,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.2]: https://github.com/mihai-dinculescu/simconnect-sdk-rs/tree/v0.2.2 [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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 34b18df..15e1dc6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,9 +5,9 @@ If you're thinking to create a PR with large feature/change, please first discus ## Releases -- Update version in `examples/Cargo.toml` -- Update version in `simconnect-sdk/Cargo.toml` (crate + `simconnect-sdk-derive`) - Update version in `simconnect-sdk-derive/Cargo.toml` +- Update version in `simconnect-sdk/Cargo.toml` (crate + `simconnect-sdk-derive`) +- Update version in `examples/Cargo.toml` - Update CHANGELOG.md - Commit - Add tag diff --git a/Cargo.lock b/Cargo.lock index 854f4a3..c75dd15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -352,7 +352,7 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" [[package]] name = "simconnect-sdk" -version = "0.2.1" +version = "0.2.2" dependencies = [ "bindgen", "num_enum", @@ -363,7 +363,7 @@ dependencies = [ [[package]] name = "simconnect-sdk-derive" -version = "0.2.1" +version = "0.2.2" dependencies = [ "once_cell", "proc-macro2", @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "simconnect-sdk-examples" -version = "0.2.1" +version = "0.2.2" dependencies = [ "simconnect-sdk", "tracing", diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 4dc6892..5f308e6 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk-examples" -version = "0.2.1" +version = "0.2.2" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "] diff --git a/simconnect-sdk-derive/Cargo.toml b/simconnect-sdk-derive/Cargo.toml index 11800eb..249f0b9 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.1" +version = "0.2.2" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "] diff --git a/simconnect-sdk/Cargo.toml b/simconnect-sdk/Cargo.toml index dbe5c4a..60a7c8e 100644 --- a/simconnect-sdk/Cargo.toml +++ b/simconnect-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk" -version = "0.2.1" +version = "0.2.2" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "] @@ -22,7 +22,7 @@ bindgen = "0.64" num_enum = "0.5" tracing = "0.1" thiserror = "1.0" -simconnect-sdk-derive = { version = "=0.2.1", path = "../simconnect-sdk-derive", optional = true } +simconnect-sdk-derive = { version = "=0.2.2", path = "../simconnect-sdk-derive", optional = true } [package.metadata.docs.rs] features = ["derive"]