Skip to content

Commit 6ec39ad

Browse files
authored
Version 0.38.0 (#1841)
1 parent 0fafaed commit 6ec39ad

File tree

24 files changed

+75
-75
lines changed

24 files changed

+75
-75
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ body:
8383
# ...
8484
8585
[dependencies.windows]
86-
version = "0.37.0"
86+
version = "0.38.0"
8787
features = [
8888
"alloc",
8989
"Win32_Foundation",

.github/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Start by adding the following to your Cargo.toml file:
1515

1616
```toml
1717
[dependencies.windows]
18-
version = "0.37.0"
18+
version = "0.38.0"
1919
features = [
2020
"alloc",
2121
"Data_Xml_Dom",

crates/libs/bindgen/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-bindgen"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -12,5 +12,5 @@ default-target = "x86_64-pc-windows-msvc"
1212
targets = []
1313

1414
[dependencies]
15-
tokens = { package = "windows-tokens", path = "../tokens", version = "0.37.0" }
16-
metadata = { package = "windows-metadata", path = "../metadata", version = "0.37.0" }
15+
tokens = { package = "windows-tokens", path = "../tokens", version = "0.38.0" }
16+
metadata = { package = "windows-metadata", path = "../metadata", version = "0.38.0" }

crates/libs/implement/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-implement"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -17,4 +17,4 @@ proc-macro = true
1717

1818
[dependencies]
1919
syn = { version = "1.0", default-features = false, features = ["parsing", "proc-macro", "printing", "full", "derive"] }
20-
tokens = { package = "windows-tokens", path = "../tokens", version = "0.37.0" }
20+
tokens = { package = "windows-tokens", path = "../tokens", version = "0.38.0" }

crates/libs/interface/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-interface"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
edition = "2018"
55
authors = ["Microsoft"]
66
license = "MIT OR Apache-2.0"

crates/libs/metadata/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-metadata"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ targets = []
1313

1414
[dependencies.windows-sys]
1515
path = "../sys"
16-
version = "0.37.0"
16+
version = "0.38.0"
1717
features = [
1818
"Win32_System_SystemServices",
1919
"Win32_System_Diagnostics_Debug",

crates/libs/sys/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "windows-sys"
4-
version = "0.37.0"
4+
version = "0.38.0"
55
authors = ["Microsoft"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0"
@@ -16,34 +16,34 @@ targets = []
1616
all-features = true
1717

1818
[target.i686-pc-windows-msvc.dependencies]
19-
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" }
19+
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.38.0" }
2020

2121
[target.i686-uwp-windows-msvc.dependencies]
22-
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" }
22+
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.38.0" }
2323

2424
[target.x86_64-pc-windows-msvc.dependencies]
25-
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" }
25+
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.38.0" }
2626

2727
[target.x86_64-uwp-windows-msvc.dependencies]
28-
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" }
28+
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.38.0" }
2929

3030
[target.aarch64-pc-windows-msvc.dependencies]
31-
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" }
31+
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.38.0" }
3232

3333
[target.aarch64-uwp-windows-msvc.dependencies]
34-
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" }
34+
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.38.0" }
3535

3636
[target.i686-pc-windows-gnu.dependencies]
37-
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" }
37+
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.38.0" }
3838

3939
[target.i686-uwp-windows-gnu.dependencies]
40-
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" }
40+
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.38.0" }
4141

4242
[target.x86_64-pc-windows-gnu.dependencies]
43-
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" }
43+
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.38.0" }
4444

4545
[target.x86_64-uwp-windows-gnu.dependencies]
46-
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" }
46+
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.38.0" }
4747

4848
[features]
4949
default = []

crates/libs/tokens/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-tokens"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/libs/windows/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "windows"
4-
version = "0.37.0"
4+
version = "0.38.0"
55
authors = ["Microsoft"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0"
@@ -16,38 +16,38 @@ default-target = "x86_64-pc-windows-msvc"
1616
targets = []
1717

1818
[target.i686-pc-windows-msvc.dependencies]
19-
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" }
19+
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.38.0" }
2020

2121
[target.i686-uwp-windows-msvc.dependencies]
22-
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" }
22+
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.38.0" }
2323

2424
[target.x86_64-pc-windows-msvc.dependencies]
25-
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" }
25+
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.38.0" }
2626

2727
[target.x86_64-uwp-windows-msvc.dependencies]
28-
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" }
28+
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.38.0" }
2929

3030
[target.aarch64-pc-windows-msvc.dependencies]
31-
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" }
31+
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.38.0" }
3232

3333
[target.aarch64-uwp-windows-msvc.dependencies]
34-
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" }
34+
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.38.0" }
3535

3636
[target.i686-pc-windows-gnu.dependencies]
37-
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" }
37+
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.38.0" }
3838

3939
[target.i686-uwp-windows-gnu.dependencies]
40-
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" }
40+
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.38.0" }
4141

4242
[target.x86_64-pc-windows-gnu.dependencies]
43-
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" }
43+
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.38.0" }
4444

4545
[target.x86_64-uwp-windows-gnu.dependencies]
46-
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" }
46+
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.38.0" }
4747

4848
[dependencies]
49-
windows-implement = { path = "../implement", version = "0.37.0", optional = true }
50-
windows-interface = { path = "../interface", version = "0.37.0", optional = true }
49+
windows-implement = { path = "../implement", version = "0.38.0", optional = true }
50+
windows-interface = { path = "../interface", version = "0.38.0", optional = true }
5151

5252
[features]
5353
default = []

crates/targets/aarch64_msvc/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_aarch64_msvc"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/targets/i686_gnu/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_i686_gnu"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/targets/i686_msvc/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_i686_msvc"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/targets/x86_64_gnu/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_x86_64_gnu"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/targets/x86_64_msvc/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_x86_64_msvc"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/tests/metadata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors = ["Microsoft"]
55
edition = "2018"
66

77
[dependencies]
8-
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" }
8+
metadata = { package = "windows-metadata", path = "../../libs/metadata" }

crates/tools/bindings/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2018"
55
publish = false
66

77
[dependencies]
8-
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" }
9-
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.37.0" }
8+
metadata = { package = "windows-metadata", path = "../../libs/metadata" }
9+
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen" }

crates/tools/gnu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2018"
55
publish = false
66

77
[dependencies]
8-
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" }
8+
metadata = { package = "windows-metadata", path = "../../libs/metadata" }

crates/tools/ilrs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2018"
55
publish = false
66

77
[dependencies]
8-
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" }
8+
metadata = { package = "windows-metadata", path = "../../libs/metadata" }

crates/tools/msvc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2018"
55
publish = false
66

77
[dependencies]
8-
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" }
8+
metadata = { package = "windows-metadata", path = "../../libs/metadata" }

crates/tools/sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ edition = "2018"
55
publish = false
66

77
[dependencies]
8-
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" }
9-
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.37.0" }
8+
metadata = { package = "windows-metadata", path = "../../libs/metadata" }
9+
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen" }
1010
rayon = "1.5.1"

crates/tools/sys/src/main.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn main() {
2424
r#"
2525
[package]
2626
name = "windows-sys"
27-
version = "0.37.0"
27+
version = "0.38.0"
2828
authors = ["Microsoft"]
2929
edition = "2018"
3030
license = "MIT OR Apache-2.0"
@@ -39,34 +39,34 @@ targets = []
3939
all-features = true
4040
4141
[target.i686-pc-windows-msvc.dependencies]
42-
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" }
42+
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.38.0" }
4343
4444
[target.i686-uwp-windows-msvc.dependencies]
45-
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" }
45+
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.38.0" }
4646
4747
[target.x86_64-pc-windows-msvc.dependencies]
48-
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" }
48+
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.38.0" }
4949
5050
[target.x86_64-uwp-windows-msvc.dependencies]
51-
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" }
51+
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.38.0" }
5252
5353
[target.aarch64-pc-windows-msvc.dependencies]
54-
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" }
54+
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.38.0" }
5555
5656
[target.aarch64-uwp-windows-msvc.dependencies]
57-
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" }
57+
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.38.0" }
5858
5959
[target.i686-pc-windows-gnu.dependencies]
60-
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" }
60+
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.38.0" }
6161
6262
[target.i686-uwp-windows-gnu.dependencies]
63-
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" }
63+
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.38.0" }
6464
6565
[target.x86_64-pc-windows-gnu.dependencies]
66-
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" }
66+
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.38.0" }
6767
6868
[target.x86_64-uwp-windows-gnu.dependencies]
69-
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" }
69+
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.38.0" }
7070
7171
[features]
7272
default = []

crates/tools/windows/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ edition = "2018"
55
publish = false
66

77
[dependencies]
8-
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" }
9-
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.37.0" }
8+
metadata = { package = "windows-metadata", path = "../../libs/metadata" }
9+
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen" }
1010
rayon = "1.5.1"

crates/tools/windows/src/main.rs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn main() {
2424
r#"
2525
[package]
2626
name = "windows"
27-
version = "0.37.0"
27+
version = "0.38.0"
2828
authors = ["Microsoft"]
2929
edition = "2018"
3030
license = "MIT OR Apache-2.0"
@@ -39,38 +39,38 @@ default-target = "x86_64-pc-windows-msvc"
3939
targets = []
4040
4141
[target.i686-pc-windows-msvc.dependencies]
42-
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" }
42+
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.38.0" }
4343
4444
[target.i686-uwp-windows-msvc.dependencies]
45-
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" }
45+
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.38.0" }
4646
4747
[target.x86_64-pc-windows-msvc.dependencies]
48-
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" }
48+
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.38.0" }
4949
5050
[target.x86_64-uwp-windows-msvc.dependencies]
51-
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" }
51+
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.38.0" }
5252
5353
[target.aarch64-pc-windows-msvc.dependencies]
54-
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" }
54+
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.38.0" }
5555
5656
[target.aarch64-uwp-windows-msvc.dependencies]
57-
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" }
57+
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.38.0" }
5858
5959
[target.i686-pc-windows-gnu.dependencies]
60-
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" }
60+
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.38.0" }
6161
6262
[target.i686-uwp-windows-gnu.dependencies]
63-
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" }
63+
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.38.0" }
6464
6565
[target.x86_64-pc-windows-gnu.dependencies]
66-
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" }
66+
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.38.0" }
6767
6868
[target.x86_64-uwp-windows-gnu.dependencies]
69-
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" }
69+
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.38.0" }
7070
7171
[dependencies]
72-
windows-implement = { path = "../implement", version = "0.37.0", optional = true }
73-
windows-interface = { path = "../interface", version = "0.37.0", optional = true }
72+
windows-implement = { path = "../implement", version = "0.38.0", optional = true }
73+
windows-interface = { path = "../interface", version = "0.38.0", optional = true }
7474
7575
[features]
7676
default = []

0 commit comments

Comments
 (0)