Skip to content

Commit b589a2a

Browse files
committed
CI: msrv fix
1 parent a26d902 commit b589a2a

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: build (msrv)
2525
uses: ./.github/workflows/_build-rust.yml
2626
with:
27-
rust-version: 1.85.0 # MSRV
27+
rust-version: 1.85.1 # MSRV
2828
do-style-check: false
2929
features: builder
3030

@@ -50,7 +50,7 @@ jobs:
5050
needs: build_msrv
5151
uses: ./.github/workflows/_build-rust.yml
5252
with:
53-
rust-version: 1.85.0 # MSRV
53+
rust-version: 1.85.1 # MSRV
5454
do-style-check: false
5555
rust-target: thumbv7em-none-eabihf
5656
features: builder
@@ -107,7 +107,7 @@ jobs:
107107
needs: build_msrv
108108
uses: ./.github/workflows/_build-rust.yml
109109
with:
110-
rust-version: 1.85.0 # MSRV
110+
rust-version: 1.85.1 # MSRV
111111
do-style-check: true
112112
do-test: false
113113
features: builder

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ default-members = [
1616
"multiboot2-common",
1717
"multiboot2-header",
1818
]
19-
package.rust-version = "1.85.0"
19+
package.rust-version = "1.85.1"
2020
package.edition = "2024"
2121
package.license = "MIT/Apache-2.0"
2222

multiboot2-common/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ to first study the inner box (`multiboot2-common`) and then study how types from
4646

4747
## MSRV
4848

49-
The MSRV is 1.85.0 stable.
49+
The MSRV is 1.85.1 stable.
5050

5151
## License & Contribution
5252

multiboot2-header/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ bytes of the ELF. See Multiboot2 specification.
8585

8686
## MSRV
8787

88-
The MSRV is 1.85.0 stable.
88+
The MSRV is 1.85.1 stable.
8989

9090
## License & Contribution
9191

multiboot2-header/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
//!
2424
//! ## MSRV
2525
//!
26-
//! The MSRV is 1.85.0 stable.
26+
//! The MSRV is 1.85.1 stable.
2727
2828
#![no_std]
2929
// --- BEGIN STYLE CHECKS ---

multiboot2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ There are many different types of tags, but they all have the same beginning:
4747

4848
## MSRV
4949

50-
The MSRV is 1.85.0 stable.
50+
The MSRV is 1.85.1 stable.
5151

5252
## License & Contribution
5353

multiboot2/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
//! ```
4242
//!
4343
//! ## MSRV
44-
//! The MSRV is 1.85.0 stable.
44+
//! The MSRV is 1.85.1 stable.
4545
4646
#[cfg_attr(feature = "builder", macro_use)]
4747
#[cfg(feature = "builder")]
@@ -114,7 +114,7 @@ pub use rsdp::{RsdpV1Tag, RsdpV2Tag};
114114
pub use smbios::SmbiosTag;
115115
pub use tag::TagHeader;
116116
pub use tag_type::{TagType, TagTypeId};
117-
pub use util::{StringError, parse_slice_as_string};
117+
pub use util::{parse_slice_as_string, StringError};
118118
pub use vbe_info::{
119119
VBECapabilities, VBEControlInfo, VBEDirectColorAttributes, VBEField, VBEInfoTag,
120120
VBEMemoryModel, VBEModeAttributes, VBEModeInfo, VBEWindowAttributes,

0 commit comments

Comments
 (0)