diff --git a/Cargo.lock b/Cargo.lock index 88750b230..e8a916956 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -877,7 +877,7 @@ dependencies = [ [[package]] name = "uefi" -version = "0.32.0" +version = "0.33.0" dependencies = [ "bitflags 2.6.0", "cfg-if", @@ -892,7 +892,7 @@ dependencies = [ [[package]] name = "uefi-macros" -version = "0.16.0" +version = "0.17.0" dependencies = [ "proc-macro2", "quote", @@ -903,7 +903,7 @@ dependencies = [ [[package]] name = "uefi-raw" -version = "0.8.0" +version = "0.9.0" dependencies = [ "bitflags 2.6.0", "ptr_meta", diff --git a/book/src/tutorial/app.md b/book/src/tutorial/app.md index bdd567105..a44cb3758 100644 --- a/book/src/tutorial/app.md +++ b/book/src/tutorial/app.md @@ -24,7 +24,7 @@ to your `Cargo.toml`. The resulting `Cargo.toml` should look like that: ```toml [dependencies] log = "0.4.21" -uefi = { version = "0.32.0", features = [ "panic_handler", "logger" ] } +uefi = { version = "0.33.0", features = [ "panic_handler", "logger" ] } ``` Replace the contents of `src/main.rs` with this: diff --git a/template/Cargo.toml b/template/Cargo.toml index 8d04fdfcc..c442c5a16 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -uefi = { version = "0.32.0", features = ["panic_handler"] } +uefi = { version = "0.33.0", features = ["panic_handler"] } diff --git a/uefi-macros/CHANGELOG.md b/uefi-macros/CHANGELOG.md index 704f21882..aa7546001 100644 --- a/uefi-macros/CHANGELOG.md +++ b/uefi-macros/CHANGELOG.md @@ -1,5 +1,8 @@ # uefi-macros - [Unreleased] + +# uefi-macros - 0.17.0 (2024-10-23) + ## Changed - **Breaking:** The `entry` no longer accepts any arguments. diff --git a/uefi-macros/Cargo.toml b/uefi-macros/Cargo.toml index e8dc9c573..046571d93 100644 --- a/uefi-macros/Cargo.toml +++ b/uefi-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi-macros" -version = "0.16.0" +version = "0.17.0" readme = "README.md" description = "Procedural macros for the `uefi` crate." diff --git a/uefi-raw/CHANGELOG.md b/uefi-raw/CHANGELOG.md index a2e8aefea..6854e704c 100644 --- a/uefi-raw/CHANGELOG.md +++ b/uefi-raw/CHANGELOG.md @@ -1,5 +1,8 @@ # uefi-raw - [Unreleased] + +# uefi-raw - 0.9.0 (2024-10-23) + ## Added - Added `DeviceType` and `DeviceSubType` enums. diff --git a/uefi-raw/Cargo.toml b/uefi-raw/Cargo.toml index d13013354..789ef9a62 100644 --- a/uefi-raw/Cargo.toml +++ b/uefi-raw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi-raw" -version = "0.8.0" +version = "0.9.0" readme = "README.md" description = """ Raw UEFI types and bindings for protocols, boot, and runtime services. This can diff --git a/uefi/CHANGELOG.md b/uefi/CHANGELOG.md index beb67633a..82b8ee780 100644 --- a/uefi/CHANGELOG.md +++ b/uefi/CHANGELOG.md @@ -1,5 +1,8 @@ # uefi - [Unreleased] + +# uefi - 0.33.0 (2024-10-23) + See [Deprecating SystemTable/BootServices/RuntimeServices][funcmigrate] for details of the deprecated items that were removed in this release. diff --git a/uefi/Cargo.toml b/uefi/Cargo.toml index 1c63a31f4..faaee3c90 100644 --- a/uefi/Cargo.toml +++ b/uefi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi" -version = "0.32.0" +version = "0.33.0" readme = "README.md" description = """ This crate makes it easy to develop Rust software that leverages safe, @@ -43,8 +43,8 @@ ptr_meta.workspace = true uguid.workspace = true cfg-if = "1.0.0" ucs2 = "0.3.3" -uefi-macros = "0.16.0" -uefi-raw = "0.8.0" +uefi-macros = "0.17.0" +uefi-raw = "0.9.0" qemu-exit = { version = "3.0.2", optional = true } [package.metadata.docs.rs]