Announce v0.1.1
This commit is contained in:
1
.github/workflows/publish.yml
vendored
1
.github/workflows/publish.yml
vendored
@@ -16,6 +16,7 @@ jobs:
|
|||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
|
- uses: davidB/rust-cargo-make@v1
|
||||||
- name: Run build
|
- name: Run build
|
||||||
run: cargo build --release --verbose
|
run: cargo build --release --verbose
|
||||||
- name: Run cargo login
|
- name: Run cargo login
|
||||||
|
@@ -6,6 +6,8 @@ file. This change log follows the conventions of
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v0.1.1] - 2022-10-23
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Docs.rs build should now pass.
|
- Docs.rs build should now pass.
|
||||||
@@ -19,5 +21,6 @@ file. This change log follows the conventions of
|
|||||||
### Initial Release of simconnect-sdk
|
### Initial Release of simconnect-sdk
|
||||||
|
|
||||||
[unreleased]: https://github.com/mihai-dinculescu/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
|
[v0.1.0]: https://github.com/mihai-dinculescu/simconnect-sdk/tree/v0.1.0
|
||||||
[keepachangelog]: https://keepachangelog.com
|
[keepachangelog]: https://keepachangelog.com
|
||||||
|
@@ -6,13 +6,14 @@ If you're thinking to create a PR with large feature/change, please first discus
|
|||||||
## Releases
|
## Releases
|
||||||
|
|
||||||
- Update version in `simconnect-sdk-derive/Cargo.toml`
|
- 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/Cargo.toml` (crate + `simconnect-sdk-derive`)
|
||||||
- Update CHANGELOG.md
|
- Update CHANGELOG.md
|
||||||
- Commit
|
- Commit
|
||||||
- Add tag
|
- Add tag
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git tag -a vX.X.X
|
git tag -a vX.X.X -m "vX.X.X"
|
||||||
```
|
```
|
||||||
|
|
||||||
- Push
|
- Push
|
||||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@@ -313,7 +313,7 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "simconnect-sdk"
|
name = "simconnect-sdk"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bindgen",
|
"bindgen",
|
||||||
"num_enum",
|
"num_enum",
|
||||||
@@ -324,7 +324,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "simconnect-sdk-derive"
|
name = "simconnect-sdk-derive"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
@@ -336,7 +336,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "simconnect-sdk-examples"
|
name = "simconnect-sdk-examples"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"simconnect-sdk",
|
"simconnect-sdk",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "simconnect-sdk-examples"
|
name = "simconnect-sdk-examples"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "SimConnect SDK Examples"
|
description = "SimConnect SDK Examples"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "simconnect-sdk-derive"
|
name = "simconnect-sdk-derive"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "simconnect-sdk"
|
name = "simconnect-sdk"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
||||||
@@ -22,7 +22,7 @@ bindgen = "0.61"
|
|||||||
num_enum = "0.5"
|
num_enum = "0.5"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
thiserror = "1.0"
|
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]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
Reference in New Issue
Block a user