Skip to content

Commit 8be2b8e

Browse files
authored
Merge pull request #1001 from nicholasbishop/bishop-release-raw
release: uefi-raw-0.5.0, uefi-macros-0.13.0, uefi-0.26.0, uefi-services-0.23.0
2 parents 554eb14 + 196a63d commit 8be2b8e

File tree

11 files changed

+26
-15
lines changed

11 files changed

+26
-15
lines changed

Diff for: Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: book/src/tutorial/app.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ In `cargo.toml`, add a few dependencies:
1818
```toml
1919
[dependencies]
2020
log = "0.4"
21-
uefi = "0.25"
22-
uefi-services = "0.22"
21+
uefi = "0.26"
22+
uefi-services = "0.23"
2323
```
2424

2525
Replace the contents of `src/main.rs` with this:

Diff for: template/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
uefi = { version = "0.25.0", features = ["alloc"] }
9-
uefi-services = "0.22.0"
8+
uefi = { version = "0.26.0", features = ["alloc"] }
9+
uefi-services = "0.23.0"

Diff for: uefi-macros/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# uefi-macros - [Unreleased]
22

3+
# uefi-macros - 0.13.0 (2023-11-12)
4+
5+
## Changed
6+
- The dev-dependency on `uefi` is now path-only.
7+
38
# uefi-macros - 0.12.0 (2023-05-15)
49

510
## Changed

Diff for: uefi-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi-macros"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
readme = "README.md"
55
description = "Procedural macros for the `uefi` crate."
66

Diff for: uefi-raw/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# uefi-raw - [Unreleased]
22

3+
# uefi-raw - 0.5.0 (2023-11-12)
4+
35
## Added
46
- Added `AbsolutePointerProtocol`.
57
- Added `SimpleFileSystemProtocol` and related types.

Diff for: uefi-raw/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi-raw"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
readme = "README.md"
55
description = "Raw UEFI types"
66

Diff for: uefi-services/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# uefi-services - [Unreleased]
22

3+
# uefi-services - 0.23.0 (2023-11-12)
4+
35
## Changed
46
- `uefi_services::system_table` now returns `SystemTable<Boot>` directly, rather
57
than wrapped in a `NonNull` pointer.

Diff for: uefi-services/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi-services"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
readme = "README.md"
55
description = "Higher-level utilities for the `uefi` crate."
66

@@ -13,7 +13,7 @@ repository.workspace = true
1313
rust-version.workspace = true
1414

1515
[dependencies]
16-
uefi = { version = "0.25.0", features = ["global_allocator"] }
16+
uefi = { version = "0.26.0", features = ["global_allocator"] }
1717
log.workspace = true
1818
cfg-if = "1.0.0"
1919
qemu-exit = { version = "3.0.1", optional = true }

Diff for: uefi/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# uefi - [Unreleased]
22

3+
# uefi - 0.26.0 (2023-11-12)
4+
35
## Added
46
- Implemented `Index`, `IndexMut`, `get`, and `get_mut` on `MemoryMap`.
57
- Added `SystemTable::as_ptr`.

Diff for: uefi/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
readme = "README.md"
55
description = "Safe and easy-to-use wrapper for building UEFI apps."
66

@@ -29,8 +29,8 @@ bitflags.workspace = true
2929
log.workspace = true
3030
ptr_meta.workspace = true
3131
ucs2 = "0.3.2"
32-
uefi-macros = "0.12.0"
33-
uefi-raw = "0.4.0"
32+
uefi-macros = "0.13.0"
33+
uefi-raw = "0.5.0"
3434
uguid.workspace = true
3535

3636
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)