Skip to content

Commit

Permalink
Version 0.45 (#2299)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Jan 21, 2023
1 parent e06dc97 commit ddf5ebb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows-sys"
version = "0.42.0"
version = "0.45.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions crates/libs/sys/src/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,5 @@ macro_rules! link {
)
}

#[doc(hidden)]
pub use crate::link;
1 change: 1 addition & 0 deletions crates/libs/windows/src/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,5 @@ macro_rules! link {
)
}

#[doc(hidden)]
pub use crate::link;
4 changes: 2 additions & 2 deletions crates/samples/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ Many of the samples were inspired or originally appeared in Kenny's [articles](h
The samples in the repo compile with the latest, usually pre-release, version of the `windows` or `windows-sys` crate.
To find the samples for a particular release you can use a specific release tag. For example:

https://github.com/microsoft/windows-rs/tree/0.42.0/crates/samples
https://github.com/microsoft/windows-rs/tree/0.45.0/crates/samples

That will give you the samples that compile with version 0.42.0 of the `windows` and `windows-sys` crates.
That will give you the samples that compile with version 0.45.0 of the `windows` and `windows-sys` crates.
2 changes: 1 addition & 1 deletion crates/tools/sys/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fn main() {
r#"
[package]
name = "windows-sys"
version = "0.42.0"
version = "0.45.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates.io/crates/windows-sys) crates let you call any Windows API past, present, and future using code generated on the fly directly from the [metadata describing the API](https://github.com/microsoft/windows-rs/tree/master/crates/libs/metadata/default) and right into your Rust package where you can call them as if they were just another Rust module. The Rust language projection follows in the tradition established by [C++/WinRT](https://github.com/microsoft/cppwinrt) of building language projections for Windows using standard languages and compilers, providing a natural and idiomatic way for Rust developers to call Windows APIs.

* [Getting started](https://kennykerr.ca/rust-getting-started/)
* [Samples](https://github.com/microsoft/windows-rs/tree/0.44.0/crates/samples)
* [Samples](https://github.com/microsoft/windows-rs/tree/0.45.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)

Start by adding the following to your Cargo.toml file:
Expand Down Expand Up @@ -58,7 +58,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-sys]
version = "0.42.0"
version = "0.45.0"
features = [
"Win32_Foundation",
"Win32_Security",
Expand Down

0 comments on commit ddf5ebb

Please sign in to comment.