Skip to content

Commit 2cf48ba

Browse files
committed
Revert "msrv: update from 1.70 to 1.75"
This reverts commit 484160e
1 parent a9a7e39 commit 2cf48ba

File tree

8 files changed

+9
-11
lines changed

8 files changed

+9
-11
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.75.0 # MSRV
27+
rust-version: 1.70.0 # 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.75.0 # MSRV
53+
rust-version: 1.70.0 # 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.75.0 # MSRV
110+
rust-version: 1.70.0 # MSRV
111111
do-style-check: true
112112
do-test: false
113113
features: builder

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.75"
29+
rust-version = "1.70"
3030

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

multiboot2-header/Changelog.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
## Unreleased
44

55
- **Breaking** All functions that returns something useful are now `#[must_use]`
6-
- updated dependencies
7-
- documentation enhancements
86

97
## 0.4.0 (2024-05-01)
108

multiboot2-header/README.md

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

7878
## MSRV
7979

80-
The MSRV is 1.75.0 stable.
80+
The MSRV is 1.70.0 stable.
8181

8282
## License & Contribution
8383

multiboot2-header/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
//!
3535
//! ## MSRV
3636
//!
37-
//! The MSRV is 1.75.0 stable.
37+
//! The MSRV is 1.70.0 stable.
3838
3939
#![no_std]
4040
#![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.75"
34+
rust-version = "1.70"
3535

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

multiboot2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ tag_, which is a tag of type `0` and size `8`.
4545

4646
## MSRV
4747

48-
The MSRV is 1.75.0 stable.
48+
The MSRV is 1.70.0 stable.
4949

5050
## License & Contribution
5151

multiboot2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
//! ```
4242
//!
4343
//! ## MSRV
44-
//! The MSRV is 1.75.0 stable.
44+
//! The MSRV is 1.70.0 stable.
4545
4646
#[cfg(feature = "builder")]
4747
extern crate alloc;

0 commit comments

Comments
 (0)