Skip to content

Commit c280585

Browse files
committed
multiboot2: raise MSRV from 1.68 to 1.69
This is required because of the usage of `core::ffi::CStr::from_bytes_until_nul`
1 parent 2d0bb97 commit c280585

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Diff for: .github/workflows/rust.yml

+3-3
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.68.0 # MSRV
23+
rust-version: 1.69.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.68.0 # MSRV
49+
rust-version: 1.69.0 # MSRV
5050
do-style-check: false
5151
rust-target: thumbv7em-none-eabihf
5252
features: builder
@@ -103,7 +103,7 @@ jobs:
103103
needs: build_msrv
104104
uses: ./.github/workflows/_build-rust.yml
105105
with:
106-
rust-version: 1.68.0 # MSRV
106+
rust-version: 1.69.0 # MSRV
107107
do-style-check: true
108108
do-test: false
109109
features: builder

Diff for: multiboot2/Changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# CHANGELOG for crate `multiboot2`
22

33
## 0.19.0 (2023-09-XX)
4+
- **BREAKING** MSRV is 1.69.0
45
- **BREAKING** `TagTrait::get_dst_str_slice` renamed to
56
`TagTrait::parse_slice_as_string` and now returns `Result<&str, StringError>`
67
- **BREAKING** `BootLoaderNameTag::name` now returns `Result<&str, StringError>`

Diff for: multiboot2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ other fields | variable
3838
All tags and the mbi itself are 8-byte aligned. The last tag must be the _end tag_, which is a tag of type `0` and size `8`.
3939

4040
## MSRV
41-
The MSRV is 1.68.0 stable.
41+
The MSRV is 1.69.0 stable.
4242

4343
## License & Contribution
4444

Diff for: multiboot2/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
//! ```
3434
//!
3535
//! ## MSRV
36-
//! The MSRV is 1.68.0 stable.
36+
//! The MSRV is 1.69.0 stable.
3737
3838
#[cfg(feature = "builder")]
3939
extern crate alloc;

0 commit comments

Comments
 (0)