Skip to content

Commit 04483e3

Browse files
committed
MSRV: 1.56.1 => 1.68.0
This is required since I use uefi-raw which depends on uguid 2.0.0 which has a MSRV of 1.60.0. uefi-raw itself has a dependency on rust 1.68.0
1 parent 0bb79e9 commit 04483e3

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: build (msrv)
2121
uses: ./.github/workflows/_build-rust.yml
2222
with:
23-
rust-version: 1.56.1
23+
rust-version: 1.68.0 # MSRV
2424
do-style-check: false
2525
features: builder
2626

@@ -46,7 +46,7 @@ jobs:
4646
needs: build_msrv
4747
uses: ./.github/workflows/_build-rust.yml
4848
with:
49-
rust-version: 1.56.1
49+
rust-version: 1.68.0 # MSRV
5050
do-style-check: false
5151
rust-target: thumbv7em-none-eabihf
5252
features: builder
@@ -102,7 +102,7 @@ jobs:
102102
needs: build_msrv
103103
uses: ./.github/workflows/_build-rust.yml
104104
with:
105-
rust-version: 1.56.1
105+
rust-version: 1.68.0 # MSRV
106106
do-style-check: true
107107
do-test: false
108108
features: builder

multiboot2-header/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ readme = "README.md"
2626
homepage = "https://github.com/rust-osdev/multiboot2-header"
2727
repository = "https://github.com/rust-osdev/multiboot2"
2828
documentation = "https://docs.rs/multiboot2-header"
29+
rust-version = "1.60"
2930

3031
[[example]]
3132
name = "minimal"

multiboot2-header/Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CHANGELOG for crate `multiboot2-header`
22

33
## Unreleased
4-
- MSRV is 1.56.1
4+
- MSRV is 1.68.0
55
- renamed the `std` feature to `alloc`
66
- added the optional `unstable` feature (requires nightly)
77
- implement `core::error::Error` for `LoadError`

multiboot2/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ readme = "README.md"
3131
homepage = "https://github.com/rust-osdev/multiboot2"
3232
repository = "https://github.com/rust-osdev/multiboot2"
3333
documentation = "https://docs.rs/multiboot2"
34+
rust-version = "1.60"
3435

3536
[features]
3637
default = ["builder"]

multiboot2/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
`uefi_raw::table::boot::MemoryDescriptor`
1414
- `EFIMemoryAreaType` was removed and is now an alias of
1515
`uefi_raw::table::boot::MemoryType`
16+
- MSRV is 1.68.0
1617

1718
## 0.15.1 (2023-03-18)
1819
- **BREAKING** `MemoryMapTag::all_memory_areas()` was renamed to `memory_areas`

0 commit comments

Comments
 (0)