Skip to content

Commit 6116e05

Browse files
authored
Version 0.5.0 (#617)
1 parent aa5837e commit 6116e05

File tree

32 files changed

+48
-42
lines changed

32 files changed

+48
-42
lines changed

Cargo.toml

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

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

1818
[build-dependencies]
19-
windows_macros = { path = "crates/macros", version = "0.4.0" }
19+
windows_macros = { path = "crates/macros", version = "0.5.0" }
2020

2121
[dev-dependencies]
2222
doc-comment = "0.3"

crates/gen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "windows_gen"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
77
description = "Code generation for the windows crate"
88

99
[dependencies]
10-
macros = { package = "windows_gen_macros", path = "macros", version = "0.4.0" }
10+
macros = { package = "windows_gen_macros", path = "macros", version = "0.5.0" }
1111
quote = "1.0"
1212
syn = "1.0"
1313
proc-macro2 = "1.0"

crates/gen/macros/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_macros"
3-
version = "0.4.0"
3+
version = "0.5.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.4.0"
3+
version = "0.5.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -10,7 +10,7 @@ description = "Macros for the windows crate"
1010
proc-macro = true
1111

1212
[dependencies]
13-
gen = { package = "windows_gen", path = "../gen", version = "0.4.0" }
13+
gen = { package = "windows_gen", path = "../gen", version = "0.5.0" }
1414
syn = "1.0"
1515
quote = "1.0"
1616
squote = "0.1.2"

docs/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.5.0
2+
3+
- Support for Win32 arrays. ([#608](https://github.com/microsoft/windows-rs/pull/608))
4+
- Updated metadata providing many fixes and improvements to Win32 APIs.
5+
- Many more improvements and fixes.
6+
17
# 0.4.0
28

39
- Win32 unions and nested structs are now generated correctly.

examples/clock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clock"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Kenny Kerr <[email protected]>"]
55
edition = "2018"
66

examples/clock/bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clock_bindings"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Kenny Kerr <[email protected]>"]
55
edition = "2018"
66

examples/com_uri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "com_uri"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Kenny Kerr <[email protected]>"]
55
edition = "2018"
66

examples/com_uri/bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "com_uri_bindings"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Kenny Kerr <[email protected]>"]
55
edition = "2018"
66

examples/enum_windows/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "enum_windows"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Kenny Kerr <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)