Skip to content

Commit 875ebca

Browse files
authored
Version 0.3.1 (#516)
1 parent a107f62 commit 875ebca

File tree

25 files changed

+36
-36
lines changed

25 files changed

+36
-36
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -10,13 +10,13 @@ documentation = "https://docs.rs/windows"
1010
readme = "README.md"
1111

1212
[dependencies]
13-
windows_macros = { path = "crates/macros", version = "0.3.0" }
14-
windows_gen = { path = "crates/gen", version = "0.3.0" }
15-
windows_winmd = { path = "crates/winmd", version = "0.3.0" }
13+
windows_macros = { path = "crates/macros", version = "0.3.1" }
14+
windows_gen = { path = "crates/gen", version = "0.3.1" }
15+
windows_winmd = { path = "crates/winmd", version = "0.3.1" }
1616
const-sha1 = "0.2"
1717

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

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

crates/gen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "windows_gen"
3-
version = "0.3.0"
3+
version = "0.3.1"
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-
windows_gen_macros = { path = "macros", version = "0.3.0" }
11-
windows_winmd = { path = "../winmd", version = "0.3.0" }
10+
windows_gen_macros = { path = "macros", version = "0.3.1" }
11+
windows_winmd = { path = "../winmd", version = "0.3.1" }
1212
quote = "1.0"
1313
syn = "1.0"
1414
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.3.0"
3+
version = "0.3.1"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

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

1212
[dependencies]
13-
windows_gen = { path = "../gen", version = "0.3.0" }
14-
windows_winmd = { path = "../winmd", version = "0.3.0" }
13+
windows_gen = { path = "../gen", version = "0.3.1" }
14+
windows_winmd = { path = "../winmd", version = "0.3.1" }
1515
syn = "1.0"
1616
quote = "1.0"
1717
squote = "0.1.2"

crates/tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "tests"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Microsoft"]
55
edition = "2018"
66

77
[dependencies]
88
windows = { path = "../.." }
9-
windows_winmd = { path = "../winmd", version = "0.3.0" }
9+
windows_winmd = { path = "../winmd", version = "0.3.1" }
1010

1111
[dev-dependencies]
1212
futures = "0.3"

crates/winmd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "windows_winmd"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
77
description = "Winmd parser the windows crate"
88

99
[dependencies]
10-
windows_winmd_macros = { path = "macros", version = "0.3.0" }
10+
windows_winmd_macros = { path = "macros", version = "0.3.1" }

crates/winmd/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_winmd_macros"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

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.3.0"
3+
version = "0.3.1"
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.3.0"
3+
version = "0.3.1"
44
authors = ["Kenny Kerr <[email protected]>"]
55
edition = "2018"
66

examples/create_window/Cargo.toml

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

0 commit comments

Comments
 (0)