Skip to content

Commit

Permalink
Announce v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mihai-dinculescu committed Oct 21, 2022
1 parent 8ea0c17 commit e49650e
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
profile: minimal
toolchain: stable
override: true
- uses: davidB/rust-cargo-make@v1
- name: Run build
run: cargo build --release --verbose
- name: Run cargo login
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ file. This change log follows the conventions of

## [Unreleased]

## [v0.1.1] - 2022-10-23

### Fixed

- Docs.rs build should now pass.
Expand All @@ -19,5 +21,6 @@ file. This change log follows the conventions of
### Initial Release of simconnect-sdk

[unreleased]: https://github.com/mihai-dinculescu/simconnect-sdk
[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
[keepachangelog]: https://keepachangelog.com
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ 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 CHANGELOG.md
- Commit
- Add tag

```bash
git tag -a vX.X.X
git tag -a vX.X.X -m "vX.X.X"
```

- Push
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.0"
version = "0.1.1"
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.0"
version = "0.1.1"
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.0"
version = "0.1.1"
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.0", path = "../simconnect-sdk-derive", optional = true }
simconnect-sdk-derive = { version = "=0.1.1", path = "../simconnect-sdk-derive", optional = true }

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit e49650e

Please sign in to comment.