Skip to content

Commit fd4923f

Browse files
committed
workspace: dependency updates, bump MSRV
1 parent b39e2f9 commit fd4923f

File tree

16 files changed

+69
-25
lines changed

16 files changed

+69
-25
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.70.0 # MSRV
27+
rust-version: 1.75.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.70.0 # MSRV
53+
rust-version: 1.75.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.70.0 # MSRV
110+
rust-version: 1.75.0 # MSRV
111111
do-style-check: true
112112
do-test: false
113113
features: builder

Cargo.lock

Lines changed: 20 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exclude = [
1111

1212
[workspace.dependencies]
1313
bitflags = "2.6.0"
14-
derive_more = { version = "~0.99.18", default-features = false, features = ["display"] }
14+
derive_more = { version = "1.0.0", default-features = false, features = ["display"] }
1515
log = { version = "~0.4", default-features = false }
1616
multiboot2 = { version = "0.22.2", default-features = false }
1717
multiboot2-common = { version = "0.1.2", default-features = false }

integration-test/bins/Cargo.lock

Lines changed: 20 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

multiboot2-common/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# Changelog for Crate `multiboot2-common`
22

3+
## Unreleased
4+
5+
- dependency updates
6+
- **Breaking:** MSRV is now 1.75
7+
38
## v0.1.2 (2024-08-24)
49

510
- Documentation improvements
6-
-
711

812
## 0.1.0 / 0.1.1 (2024-08-20)
913

multiboot2-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ readme = "README.md"
2020
homepage = "https://github.com/rust-osdev/multiboot2"
2121
repository = "https://github.com/rust-osdev/multiboot2"
2222
documentation = "https://docs.rs/multiboot2-common"
23-
rust-version = "1.70"
23+
rust-version = "1.75"
2424

2525
[features]
2626
default = ["builder"]

multiboot2-common/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ABI-compatible rusty types.
2424

2525
## MSRV
2626

27-
The MSRV is 1.70.0 stable.
27+
The MSRV is 1.75.0 stable.
2828

2929
## License & Contribution
3030

multiboot2-header/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog for Crate `multiboot2-header`
22

3+
## Unreleased
4+
5+
- dependency updates
6+
- **Breaking:** MSRV is now 1.75
7+
38
## v0.5.1 (2024-08-24)
49

510
- Documentation improvements

multiboot2-header/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ readme = "README.md"
2929
homepage = "https://github.com/rust-osdev/multiboot2-header"
3030
repository = "https://github.com/rust-osdev/multiboot2"
3131
documentation = "https://docs.rs/multiboot2-header"
32-
rust-version = "1.70"
32+
rust-version = "1.75"
3333

3434
[[example]]
3535
name = "minimal"

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.70.0 stable.
88+
The MSRV is 1.75.0 stable.
8989

9090
## License & Contribution
9191

0 commit comments

Comments
 (0)