Skip to content

Commit

Permalink
multiboot2: raise MSRV from 1.68 to 1.69
Browse files Browse the repository at this point in the history
This is required because of the usage of `core::ffi::CStr::from_bytes_until_nul`
  • Loading branch information
phip1611 committed Sep 21, 2023
1 parent 1a21da6 commit 9ee178a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: build (msrv)
uses: ./.github/workflows/_build-rust.yml
with:
rust-version: 1.68.0 # MSRV
rust-version: 1.69.0 # MSRV
do-style-check: false
features: builder

Expand All @@ -46,7 +46,7 @@ jobs:
needs: build_msrv
uses: ./.github/workflows/_build-rust.yml
with:
rust-version: 1.68.0 # MSRV
rust-version: 1.69.0 # MSRV
do-style-check: false
rust-target: thumbv7em-none-eabihf
features: builder
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
needs: build_msrv
uses: ./.github/workflows/_build-rust.yml
with:
rust-version: 1.68.0 # MSRV
rust-version: 1.69.0 # MSRV
do-style-check: true
do-test: false
features: builder
Expand Down
1 change: 1 addition & 0 deletions multiboot2/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# CHANGELOG for crate `multiboot2`

## 0.19.0 (2023-09-XX)
- **BREAKING** MSRV is 1.69.0
- **BREAKING** `Tag::get_dst_str_slice` renamed to
`Tag::parse_slice_as_string` and now returns `Result<&str, StringError>`
- **BREAKING** `BootLoaderNameTag::name` now returns `Result<&str, StringError>`
Expand Down
2 changes: 1 addition & 1 deletion multiboot2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ other fields | variable
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`.

## MSRV
The MSRV is 1.68.0 stable.
The MSRV is 1.69.0 stable.

## License & Contribution

Expand Down
2 changes: 1 addition & 1 deletion multiboot2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
//! ```
//!
//! ## MSRV
//! The MSRV is 1.68.0 stable.
//! The MSRV is 1.69.0 stable.
#[cfg(feature = "builder")]
extern crate alloc;
Expand Down

0 comments on commit 9ee178a

Please sign in to comment.