From ad52d7f0503a291fff03fb3b5c256761a1c63b1e Mon Sep 17 00:00:00 2001 From: Mihai Dinculescu Date: Mon, 24 Oct 2022 20:24:17 +0100 Subject: [PATCH] Announce v0.1.3 --- CHANGELOG.md | 5 ++++- CONTRIBUTING.md | 2 +- Cargo.lock | 6 +++--- examples/Cargo.toml | 2 +- simconnect-sdk-derive/Cargo.toml | 2 +- simconnect-sdk/Cargo.toml | 4 ++-- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b1d959..ff7277b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,9 @@ file. This change log follows the conventions of ## [Unreleased] -## Changed +## [v0.1.3] - 2022-10-24 + +### Changed - `SimConnect::get_next_dispatch` will now return an error of type `SimConnectError::UnimplementedMessageType` instead of panicking on unrecognized notification types. - `SimConnect::get_next_dispatch` will now return an error of type `SimConnectError::SimConnectException` instead of `Notification::Exception`. @@ -39,6 +41,7 @@ file. This change log follows the conventions of ### Initial Release of simconnect-sdk [unreleased]: https://github.com/mihai-dinculescu/simconnect-sdk +[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 [v0.1.0]: https://github.com/mihai-dinculescu/simconnect-sdk/tree/v0.1.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4c84509..fc4c79b 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 `simconnect-sdk-derive/Cargo.toml` - 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 CHANGELOG.md - Commit - Add tag diff --git a/Cargo.lock b/Cargo.lock index 022e755..173c1a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,7 +313,7 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" [[package]] name = "simconnect-sdk" -version = "0.1.2" +version = "0.1.3" dependencies = [ "bindgen", "num_enum", @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "simconnect-sdk-derive" -version = "0.1.2" +version = "0.1.3" dependencies = [ "once_cell", "proc-macro2", @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "simconnect-sdk-examples" -version = "0.1.2" +version = "0.1.3" dependencies = [ "simconnect-sdk", "tracing", diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 3e907a7..42af85c 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk-examples" -version = "0.1.2" +version = "0.1.3" authors = ["Mihai Dinculescu "] edition = "2021" description = "SimConnect SDK Examples" diff --git a/simconnect-sdk-derive/Cargo.toml b/simconnect-sdk-derive/Cargo.toml index 9a67c66..db8d11f 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.2" +version = "0.1.3" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "] diff --git a/simconnect-sdk/Cargo.toml b/simconnect-sdk/Cargo.toml index 4c74326..5b10a85 100644 --- a/simconnect-sdk/Cargo.toml +++ b/simconnect-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simconnect-sdk" -version = "0.1.2" +version = "0.1.3" 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.2", path = "../simconnect-sdk-derive", optional = true } +simconnect-sdk-derive = { version = "=0.1.3", path = "../simconnect-sdk-derive", optional = true } [package.metadata.docs.rs] features = ["derive"]