We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb68b3 commit e6d6d58Copy full SHA for e6d6d58
CHANGELOG.md
@@ -18,6 +18,7 @@
18
a `Revision`. The firmware revision's format is vendor specific and
19
may not have the same semantics as the UEFI revision.
20
- Changed `Revision` to `repr(transparent)`.
21
+- Add `Revision::EFI_2_100` constant.
22
23
## uefi-macros - [Unreleased]
24
src/table/revision.rs
@@ -27,6 +27,7 @@ impl Revision {
27
pub const EFI_2_70: Self = Self::new(2, 70);
28
pub const EFI_2_80: Self = Self::new(2, 80);
29
pub const EFI_2_90: Self = Self::new(2, 90);
30
+ pub const EFI_2_100: Self = Self::new(2, 100);
31
}
32
33
impl Revision {
0 commit comments