Skip to content

Commit

Permalink
Version 0.10.0 (#797)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr authored May 12, 2021
1 parent 6ff70ee commit 220d835
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
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

0 comments on commit 220d835

Please sign in to comment.