Skip to content

Commit

Permalink
Version 0.15.0 (#952)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr authored Jul 7, 2021
1 parent d5de34f commit 7347944
Show file tree
Hide file tree
Showing 5 changed files with 12 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.14.0"
version = "0.15.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -11,8 +11,8 @@ readme = "README.md"
exclude = [".github", "docs"]

[dependencies]
windows_macros = { path = "crates/macros", version = "0.14.0", optional = true }
gen = { package = "windows_gen", path = "crates/gen", version = "0.14.0", optional = true }
windows_macros = { path = "crates/macros", version = "0.15.0", optional = true }
gen = { package = "windows_gen", path = "crates/gen", version = "0.15.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.14.0"
version = "0.15.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.14.0"
version = "0.15.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.14.0" }
gen = { package = "windows_gen", path = "../gen", version = "0.15.0" }
syn = { version = "1.0", default-features = false, features = ["parsing", "proc-macro", "printing", "full"] }
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.15.0

- Minor fixes and improvements.

# 0.14.0

- Packaging support.
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.14.0"
windows = "0.15.0"

[build-dependencies]
windows = "0.14.0"
windows = "0.15.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 7347944

Please sign in to comment.