Skip to content

Commit 361244d

Browse files
wmmc88Copilot
andauthored
chore: November 2025 release #2 (#577)
Signed-off-by: Melvin Wang <[email protected]> Co-authored-by: Copilot <[email protected]>
1 parent 6b37caa commit 361244d

File tree

36 files changed

+594
-543
lines changed

36 files changed

+594
-543
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ license = "MIT OR Apache-2.0"
2323

2424
[workspace.dependencies]
2525
# Workspace Crates
26-
wdk = { path = "crates/wdk", version = "0.4.0" }
27-
wdk-alloc = { path = "crates/wdk-alloc", version = "0.4.0" }
28-
wdk-build = { path = "crates/wdk-build", version = "0.5.0" }
26+
wdk = { path = "crates/wdk", version = "0.4.1" }
27+
wdk-alloc = { path = "crates/wdk-alloc", version = "0.4.1" }
28+
wdk-build = { path = "crates/wdk-build", version = "0.5.1" }
2929
# Exact version (=) kept in lockstep with wdk-sys. These crates must be versioned together because:
3030
# (1) wdk-macros is a proc-macro crate consumed only through wdk-sys re-exports, and
3131
# (2) the two crates form a tightly coupled API surface.
3232
# Enforced by .github/workflows/version-checks.yaml (check-version-consistency job, lockstep step).
33-
wdk-macros = { path = "crates/wdk-macros", version = "=0.5.0" }
34-
wdk-panic = { path = "crates/wdk-panic", version = "0.4.0" }
35-
wdk-sys = { path = "crates/wdk-sys", version = "0.5.0" }
33+
wdk-macros = { path = "crates/wdk-macros", version = "=0.5.1" }
34+
wdk-panic = { path = "crates/wdk-panic", version = "0.4.1" }
35+
wdk-sys = { path = "crates/wdk-sys", version = "0.5.1" }
3636

3737
# External Crates
3838
anyhow = "1.0.97"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ The crates in this repository are available from [`crates.io`](https://crates.io
149149
#!@rust
150150
//! ```cargo
151151
//! [dependencies]
152-
//! wdk-build = "0.5.0"
152+
//! wdk-build = "0.5.1"
153153
//! ```
154154
#![allow(unused_doc_comments)]
155155

crates/cargo-wdk/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
## [0.1.1](https://github.com/microsoft/windows-drivers-rs/compare/cargo-wdk-v0.1.0...cargo-wdk-v0.1.1) - 2025-11-13
9+
10+
### Other
11+
12+
- update cargo-wdk templates to use latest crate versions ([#573](https://github.com/microsoft/windows-drivers-rs/pull/573))
13+
- update cargo-wdk `Cargo.toml` description to align better with `README.md` ([#569](https://github.com/microsoft/windows-drivers-rs/pull/569))
14+
815
## [0.1.0](https://github.com/microsoft/windows-drivers-rs/compare/cargo-wdk-v0.0.0...cargo-wdk-v0.1.0) - 2025-11-06
916

1017
### Added

crates/cargo-wdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition.workspace = true
33
name = "cargo-wdk"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
authors = ["Microsoft"]
66
description = "A Cargo extension for developing Windows drivers in Rust"
77
repository.workspace = true

crates/cargo-wdk/templates/kmdf/Cargo.toml.tmp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ target-kmdf-version-minor = 33
77
crate-type = ["cdylib"]
88

99
[build-dependencies]
10-
wdk-build = "0.5.0"
10+
wdk-build = "0.5.1"
1111

1212
[dependencies]
13-
wdk = "0.4.0"
14-
wdk-alloc = "0.4.0"
15-
wdk-panic = "0.4.0"
16-
wdk-sys = "0.5.0"
13+
wdk = "0.4.1"
14+
wdk-alloc = "0.4.1"
15+
wdk-panic = "0.4.1"
16+
wdk-sys = "0.5.1"
1717

1818
[features]
1919
default = []

crates/cargo-wdk/templates/umdf/Cargo.toml.tmp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ target-umdf-version-minor = 33
77
crate-type = ["cdylib"]
88

99
[build-dependencies]
10-
wdk-build = "0.5.0"
10+
wdk-build = "0.5.1"
1111

1212
[dependencies]
13-
wdk = "0.4.0"
14-
wdk-sys = "0.5.0"
13+
wdk = "0.4.1"
14+
wdk-sys = "0.5.1"
1515

1616
[features]
1717
default = []

crates/cargo-wdk/templates/wdm/Cargo.toml.tmp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ driver-type = "WDM"
55
crate-type = ["cdylib"]
66

77
[build-dependencies]
8-
wdk-build = "0.5.0"
8+
wdk-build = "0.5.1"
99

1010
[dependencies]
11-
wdk = "0.4.0"
12-
wdk-alloc = "0.4.0"
13-
wdk-panic = "0.4.0"
14-
wdk-sys = "0.5.0"
11+
wdk = "0.4.1"
12+
wdk-alloc = "0.4.1"
13+
wdk-panic = "0.4.1"
14+
wdk-sys = "0.5.1"
1515

1616
[features]
1717
default = []

crates/cargo-wdk/tests/emulated-workspace/umdf-driver-workspace/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cargo-wdk/tests/kmdf-driver/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)