Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.10.0 #797

Merged
merged 1 commit into from
May 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows"
version = "0.9.1"
version = "0.10.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -11,8 +11,8 @@ readme = "README.md"
exclude = [".github", ".windows", "docs", "examples"]

[dependencies]
windows_macros = { path = "crates/macros", version = "0.9.1", optional = true }
gen = { package = "windows_gen", path = "crates/gen", version = "0.9.1", optional = true }
windows_macros = { path = "crates/macros", version = "0.10.0", optional = true }
gen = { package = "windows_gen", path = "crates/gen", version = "0.10.0", optional = true }
const-sha1 = "0.2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_gen"
version = "0.9.1"
version = "0.10.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_macros"
version = "0.9.1"
version = "0.10.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -10,5 +10,5 @@ description = "Macros for the windows crate"
proc-macro = true

[dependencies]
gen = { package = "windows_gen", path = "../gen", version = "0.9.1" }
gen = { package = "windows_gen", path = "../gen", version = "0.10.0" }
syn = { version = "1.0", default-features = false, features = ["parsing", "proc-macro", "printing", "full"] }
9 changes: 9 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.10.0

- Add support for scoped and unscoped enum constants. ([#787](https://github.com/microsoft/windows-rs/pull/787))
- Improved compile-time error reporting. ([#773](https://github.com/microsoft/windows-rs/pull/773))
- Preserve original names for HSTRING and IInspectable. ([#759](https://github.com/microsoft/windows-rs/pull/759))
- Add support for weak references. ([#745](https://github.com/microsoft/windows-rs/pull/745))
- Updated metadata providing many fixes and improvements to Win32 APIs. Notably, many Win32 namespaces have been renamed.
- Other improvements and fixes.

# 0.9.0

- Transform QueryInterface-like functions into generic functions. ([#735](https://github.com/microsoft/windows-rs/pull/735))
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies]
windows = "0.9.1"
windows = "0.10.0"

[build-dependencies]
windows = "0.9.1"
windows = "0.10.0"
```

This will allow Cargo to download, build, and cache Windows support as a package. Next, specify which types you need inside of a `build.rs` build script and the `windows` crate will generate the necessary bindings:
Expand Down