Skip to content

Commit

Permalink
release: uefi-raw-0.8.0, uefi-macros-0.16.0, uefi-0.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasbishop committed Sep 9, 2024
1 parent fa3806e commit 9845db5
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion book/src/tutorial/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.31.0", features = [ "panic_handler", "logger" ] }
uefi = { version = "0.32.0", features = [ "panic_handler", "logger" ] }
```

Replace the contents of `src/main.rs` with this:
Expand Down
2 changes: 1 addition & 1 deletion template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2021"
publish = false

[dependencies]
uefi = { version = "0.31.0", features = ["panic_handler"] }
uefi = { version = "0.32.0", features = ["panic_handler"] }
10 changes: 10 additions & 0 deletions uefi-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# uefi-macros - [Unreleased]


# uefi-macros - 0.16.0 (2024-09-09)

## Changed

- Internal updates to the `entry` macro related to
[Deprecating SystemTable/BootServices/RuntimeServices][funcmigrate].

[funcmigrate]: ../docs/funcs_migration.md


# uefi-macros - 0.15.0 (2024-08-20)

## Changed
Expand Down
2 changes: 1 addition & 1 deletion uefi-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi-macros"
version = "0.15.0"
version = "0.16.0"
readme = "README.md"
description = "Procedural macros for the `uefi` crate."

Expand Down
3 changes: 3 additions & 0 deletions uefi-raw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# uefi-raw - [Unreleased]


# uefi-raw - 0.8.0 (2024-09-09)

## Added

- Added `PAGE_SIZE` constant.
Expand Down
2 changes: 1 addition & 1 deletion uefi-raw/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi-raw"
version = "0.7.0"
version = "0.8.0"
readme = "README.md"
description = """
Raw UEFI types and bindings for protocols, boot, and runtime services. This can
Expand Down
5 changes: 4 additions & 1 deletion uefi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# uefi - [Unreleased]


# uefi - 0.32.0 (2024-09-09)

See [Deprecating SystemTable/BootServices/RuntimeServices][funcmigrate] for
details of the deprecation in this release.
details of the deprecations in this release.

We added documentation to `lib.rs` and the [uefi-rs book] about how
`uefi` compares to "standard Rust binaries" for UEFI (those using `std`), and
Expand Down
6 changes: 3 additions & 3 deletions uefi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi"
version = "0.31.0"
version = "0.32.0"
readme = "README.md"
description = """
This crate makes it easy to develop Rust software that leverages safe,
Expand Down Expand Up @@ -43,8 +43,8 @@ ptr_meta.workspace = true
uguid.workspace = true
cfg-if = "1.0.0"
ucs2 = "0.3.3"
uefi-macros = "0.15.0"
uefi-raw = "0.7.0"
uefi-macros = "0.16.0"
uefi-raw = "0.8.0"
qemu-exit = { version = "3.0.2", optional = true }

[package.metadata.docs.rs]
Expand Down

0 comments on commit 9845db5

Please sign in to comment.