Просмотр исходного кода

msrv: update from 1.70 to 1.75

Philipp Schuster 8 месяцев назад
Родитель
Сommit
484160e832

+ 3 - 3
.github/workflows/rust.yml

@@ -20,7 +20,7 @@ jobs:
     name: build (msrv)
     uses: ./.github/workflows/_build-rust.yml
     with:
-      rust-version: 1.70.0 # MSRV
+      rust-version: 1.75.0 # MSRV
       do-style-check: false
       features: builder
 
@@ -46,7 +46,7 @@ jobs:
     needs: build_msrv
     uses: ./.github/workflows/_build-rust.yml
     with:
-      rust-version: 1.70.0 # MSRV
+      rust-version: 1.75.0 # MSRV
       do-style-check: false
       rust-target: thumbv7em-none-eabihf
       features: builder
@@ -103,7 +103,7 @@ jobs:
     needs: build_msrv
     uses: ./.github/workflows/_build-rust.yml
     with:
-      rust-version: 1.70.0 # MSRV
+      rust-version: 1.75.0 # MSRV
       do-style-check: true
       do-test: false
       features: builder

+ 1 - 1
multiboot2-header/Cargo.toml

@@ -26,7 +26,7 @@ readme = "README.md"
 homepage = "https://github.com/rust-osdev/multiboot2-header"
 repository = "https://github.com/rust-osdev/multiboot2"
 documentation = "https://docs.rs/multiboot2-header"
-rust-version = "1.70"
+rust-version = "1.75"
 
 [[example]]
 name = "minimal"

+ 3 - 0
multiboot2-header/Changelog.md

@@ -2,6 +2,9 @@
 
 ## Unreleased
 
+- updated dependencies
+- MSRV is 1.75
+
 ## 0.4.0 (2024-05-01)
 
 - added `EndHeaderTag::default()`

+ 1 - 1
multiboot2-header/README.md

@@ -77,7 +77,7 @@ bytes of the ELF. See Multiboot2 specification.
 
 ## MSRV
 
-The MSRV is 1.70.0 stable.
+The MSRV is 1.75.0 stable.
 
 ## License & Contribution
 

+ 1 - 1
multiboot2-header/src/lib.rs

@@ -34,7 +34,7 @@
 //!
 //! ## MSRV
 //!
-//! The MSRV is 1.70.0 stable.
+//! The MSRV is 1.75.0 stable.
 
 #![no_std]
 #![cfg_attr(feature = "unstable", feature(error_in_core))]

+ 1 - 1
multiboot2/Cargo.toml

@@ -31,7 +31,7 @@ readme = "README.md"
 homepage = "https://github.com/rust-osdev/multiboot2"
 repository = "https://github.com/rust-osdev/multiboot2"
 documentation = "https://docs.rs/multiboot2"
-rust-version = "1.70"
+rust-version = "1.75"
 
 [features]
 default = ["builder"]

+ 5 - 0
multiboot2/Changelog.md

@@ -1,5 +1,10 @@
 # CHANGELOG for crate `multiboot2`
 
+## Unreleased
+
+- updated dependencies
+- MSRV is 1.75
+
 ## 0.20.2 (2024-05-26)
 
 - fix Debug implementation of `EfiMemoryMapTag`

+ 1 - 1
multiboot2/README.md

@@ -45,7 +45,7 @@ tag_, which is a tag of type `0` and size `8`.
 
 ## MSRV
 
-The MSRV is 1.70.0 stable.
+The MSRV is 1.75.0 stable.
 
 ## License & Contribution
 

+ 1 - 1
multiboot2/src/lib.rs

@@ -33,7 +33,7 @@
 //! ```
 //!
 //! ## MSRV
-//! The MSRV is 1.70.0 stable.
+//! The MSRV is 1.75.0 stable.
 
 #[cfg(feature = "builder")]
 extern crate alloc;