Skip to content

Commit e2b9d95

Browse files
committed
fix MSRV in more places
1 parent 14851d7 commit e2b9d95

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

multiboot2-header/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +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"
29+
rust-version = "1.68"
3030

3131
[[example]]
3232
name = "minimal"

multiboot2-header/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ You may need a special linker script to place this in a LOAD segment with a file
6969
See specification.
7070

7171
## MSRV
72-
The MSRV is 1.56.1 stable.
72+
The MSRV is 1.68.0 stable.
7373

7474
## License & Contribution
7575

multiboot2-header/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
//! ```
3232
//!
3333
//! ## MSRV
34-
//! The MSRV is 1.56.1 stable.
34+
//! The MSRV is 1.68.0 stable.
3535
3636
#![no_std]
3737
#![cfg_attr(feature = "unstable", feature(error_in_core))]

multiboot2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +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"
34+
rust-version = "1.68"
3535

3636
[features]
3737
default = ["builder"]

multiboot2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ other fields | variable
3737
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`.
3838

3939
## MSRV
40-
The MSRV is 1.56.1 stable.
40+
The MSRV is 1.68.0 stable.
4141

4242
## License & Contribution
4343

multiboot2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//! ```
3131
//!
3232
//! ## MSRV
33-
//! The MSRV is 1.56.1 stable.
33+
//! The MSRV is 1.68.0 stable.
3434
3535
#[cfg(feature = "builder")]
3636
extern crate alloc;

0 commit comments

Comments
 (0)