-
Notifications
You must be signed in to change notification settings - Fork 539
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create releasing.md * migrate from changelog to GitHub releases We can click a button to generate a changelog which is a big workflow improvement. * bump versions to `0.30.0`
- Loading branch information
1 parent
4e84867
commit 5e37e9f
Showing
23 changed files
with
97 additions
and
270 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# RELEASE | ||
|
||
## Validations | ||
|
||
1. Check out latest master branch | ||
2. `windows-sys` is checked on CI, no need to check that | ||
3. Run `cargo check -p windows --all-features` locally | ||
4. Clone the samples repo, manually build all of those. | ||
5. Build the documentation locally for `windows` | ||
|
||
## Releasing | ||
|
||
1. Updating versions in a separate branch | ||
3. Validate & merge PR | ||
2. Create a new GitHub release, create a tag, and generate release notes | ||
4. Cargo publish | ||
5. Update all samples to point at new version of crate | ||
6. Generate new documentation for `windows` locally | ||
7. Push the generated `windows` docs to GitHub pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "windows-bindgen" | ||
version = "0.29.0" | ||
version = "0.30.0" | ||
authors = ["Microsoft"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "Code gen support for the windows crate" | ||
repository = "https://github.com/microsoft/windows-rs" | ||
|
||
[dependencies] | ||
quote = { package = "windows_quote", path = "../quote", version = "0.29.0" } | ||
reader = { package = "windows_reader", path = "../reader", version = "0.29.0" } | ||
quote = { package = "windows_quote", path = "../quote", version = "0.30.0" } | ||
reader = { package = "windows_reader", path = "../reader", version = "0.30.0" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "windows_gen" | ||
version = "0.29.0" | ||
version = "0.30.0" | ||
authors = ["Microsoft"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "Code gen support for the windows crate" | ||
repository = "https://github.com/microsoft/windows-rs" | ||
|
||
[dependencies] | ||
quote = { package = "windows_quote", path = "../quote", version = "0.29.0" } | ||
reader = { package = "windows_reader", path = "../reader", version = "0.29.0" } | ||
quote = { package = "windows_quote", path = "../quote", version = "0.30.0" } | ||
reader = { package = "windows_reader", path = "../reader", version = "0.30.0" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.