Skip to content

Commit e6d6d58

Browse files
Add Revision::EFI_2_100` constant
1 parent cfb68b3 commit e6d6d58

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
a `Revision`. The firmware revision's format is vendor specific and
1919
may not have the same semantics as the UEFI revision.
2020
- Changed `Revision` to `repr(transparent)`.
21+
- Add `Revision::EFI_2_100` constant.
2122

2223
## uefi-macros - [Unreleased]
2324

src/table/revision.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ impl Revision {
2727
pub const EFI_2_70: Self = Self::new(2, 70);
2828
pub const EFI_2_80: Self = Self::new(2, 80);
2929
pub const EFI_2_90: Self = Self::new(2, 90);
30+
pub const EFI_2_100: Self = Self::new(2, 100);
3031
}
3132

3233
impl Revision {

0 commit comments

Comments
 (0)