Skip to content

Commit 7347944

Browse files
authored
Version 0.15.0 (#952)
1 parent d5de34f commit 7347944

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -11,8 +11,8 @@ readme = "README.md"
1111
exclude = [".github", "docs"]
1212

1313
[dependencies]
14-
windows_macros = { path = "crates/macros", version = "0.14.0", optional = true }
15-
gen = { package = "windows_gen", path = "crates/gen", version = "0.14.0", optional = true }
14+
windows_macros = { path = "crates/macros", version = "0.15.0", optional = true }
15+
gen = { package = "windows_gen", path = "crates/gen", version = "0.15.0", optional = true }
1616
const-sha1 = "0.2"
1717

1818
[dev-dependencies]

crates/gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows_gen"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows_macros"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -10,5 +10,5 @@ description = "Macros for the windows crate"
1010
proc-macro = true
1111

1212
[dependencies]
13-
gen = { package = "windows_gen", path = "../gen", version = "0.14.0" }
13+
gen = { package = "windows_gen", path = "../gen", version = "0.15.0" }
1414
syn = { version = "1.0", default-features = false, features = ["parsing", "proc-macro", "printing", "full"] }

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.15.0
2+
3+
- Minor fixes and improvements.
4+
15
# 0.14.0
26

37
- Packaging support.

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Start by adding the following to your Cargo.toml file:
1818

1919
```toml
2020
[dependencies]
21-
windows = "0.14.0"
21+
windows = "0.15.0"
2222

2323
[build-dependencies]
24-
windows = "0.14.0"
24+
windows = "0.15.0"
2525
```
2626

2727
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:

0 commit comments

Comments
 (0)