Skip to content

Commit

Permalink
Announce v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mihai-dinculescu committed Oct 24, 2022
1 parent 54960fb commit ad52d7f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk-examples"
version = "0.1.2"
version = "0.1.3"
authors = ["Mihai Dinculescu <[email protected]>"]
edition = "2021"
description = "SimConnect SDK Examples"
Expand Down
2 changes: 1 addition & 1 deletion simconnect-sdk-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk-derive"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "MIT"
authors = ["Mihai Dinculescu <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions simconnect-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simconnect-sdk"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "MIT"
authors = ["Mihai Dinculescu <[email protected]>"]
Expand All @@ -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"]
Expand Down

0 comments on commit ad52d7f

Please sign in to comment.