Skip to content

Commit 70cb833

Browse files
authored
Release 63 (#3548)
1 parent 844f8cb commit 70cb833

File tree

24 files changed

+38
-40
lines changed

24 files changed

+38
-40
lines changed

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ syn = { version = "2.0", default-features = false }
3434
toml = { version = "0.8", features = ["parse"] }
3535
serde_json = {version = "1.0", default-features = false }
3636
# generated dependencies
37-
cppwinrt = { version = "0.2.1", path = "crates/libs/cppwinrt", default-features = false }
38-
windows = { version = "0.60.0", path = "crates/libs/windows", default-features = false }
39-
windows-bindgen = { version = "0.60.0", path = "crates/libs/bindgen", default-features = false }
40-
windows-collections = { version = "0.1.1", path = "crates/libs/collections", default-features = false }
41-
windows-core = { version = "0.60.1", path = "crates/libs/core", default-features = false }
42-
windows-future = { version = "0.1.1", path = "crates/libs/future", default-features = false }
43-
windows-implement = { version = "0.59.0", path = "crates/libs/implement", default-features = false }
44-
windows-interface = { version = "0.59.0", path = "crates/libs/interface", default-features = false }
45-
windows-link = { version = "0.1.0", path = "crates/libs/link", default-features = false }
46-
windows-numerics = { version = "0.1.1", path = "crates/libs/numerics", default-features = false }
47-
windows-registry = { version = "0.5.0", path = "crates/libs/registry", default-features = false }
48-
windows-result = { version = "0.3.1", path = "crates/libs/result", default-features = false }
49-
windows-strings = { version = "0.3.1", path = "crates/libs/strings", default-features = false }
37+
cppwinrt = { version = "0.2.2", path = "crates/libs/cppwinrt", default-features = false }
38+
windows = { version = "0.61.0", path = "crates/libs/windows", default-features = false }
39+
windows-bindgen = { version = "0.61.0", path = "crates/libs/bindgen", default-features = false }
40+
windows-collections = { version = "0.1.2", path = "crates/libs/collections", default-features = false }
41+
windows-core = { version = "0.61.0", path = "crates/libs/core", default-features = false }
42+
windows-future = { version = "0.1.2", path = "crates/libs/future", default-features = false }
43+
windows-implement = { version = "0.60.0", path = "crates/libs/implement", default-features = false }
44+
windows-interface = { version = "0.59.1", path = "crates/libs/interface", default-features = false }
45+
windows-link = { version = "0.1.1", path = "crates/libs/link", default-features = false }
46+
windows-numerics = { version = "0.2.0", path = "crates/libs/numerics", default-features = false }
47+
windows-registry = { version = "0.5.1", path = "crates/libs/registry", default-features = false }
48+
windows-result = { version = "0.3.2", path = "crates/libs/result", default-features = false }
49+
windows-strings = { version = "0.4.0", path = "crates/libs/strings", default-features = false }
5050
windows-sys = { version = "0.59.0", path = "crates/libs/sys", default-features = false }
5151
windows-targets = { version = "0.53.0", path = "crates/libs/targets", default-features = false }
52-
windows-version = { version = "0.1.3", path = "crates/libs/version", default-features = false }
52+
windows-version = { version = "0.1.4", path = "crates/libs/version", default-features = false }

crates/libs/bindgen/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-bindgen"
3-
version = "0.60.0"
3+
version = "0.61.0"
44
edition = "2021"
55
rust-version = "1.74"
66
license = "MIT OR Apache-2.0"

crates/libs/bindgen/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Start by adding the following to your Cargo.toml file:
1313
version = "0.1"
1414

1515
[build-dependencies.windows-bindgen]
16-
version = "0.60"
16+
version = "0.61"
1717
```
1818

1919
Generate Rust bindings in a build script as follows:

crates/libs/collections/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-collections"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
rust-version = "1.74"
66
license = "MIT OR Apache-2.0"

crates/libs/core/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-core"
3-
version = "0.60.1"
3+
version = "0.61.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/cppwinrt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cppwinrt"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/cppwinrt/src/lib.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#![doc = include_str!("../readme.md")]
22
#![cfg(windows)]
33

4-
const VERSION: &str = "2.0.240405.15";
5-
64
/// Calls the C++/WinRT compiler with the given arguments.
75
///
86
/// Use `cppwinrt(["-help"])` for available options.
@@ -15,7 +13,7 @@ where
1513
let mut path = std::env::temp_dir();
1614
path.push(unique());
1715
std::fs::create_dir_all(&path).unwrap();
18-
path.push(format!("cppwinrt-{VERSION}.exe"));
16+
path.push("cppwinrt.exe");
1917
std::fs::write(&path, std::include_bytes!("../cppwinrt.exe")).unwrap();
2018

2119
let mut command = std::process::Command::new(&path);
@@ -73,6 +71,6 @@ mod tests {
7371
#[test]
7472
fn unexpected_version() {
7573
let ok = cppwinrt(["-help"]);
76-
assert!(ok.contains(VERSION), "unexpected version");
74+
assert!(ok.contains("2.0.240405.15"), "unexpected version");
7775
}
7876
}

crates/libs/future/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-future"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
rust-version = "1.74"
66
license = "MIT OR Apache-2.0"

crates/libs/implement/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-implement"
3-
version = "0.59.0"
3+
version = "0.60.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

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.59.0"
3+
version = "0.59.1"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

0 commit comments

Comments
 (0)