Skip to content

Commit 7399fbb

Browse files
authored
Merge pull request #178 from rust-osdev/mb2-hdr
multiboot2-header: bump dependency to multiboot2
2 parents 574d702 + 226348d commit 7399fbb

File tree

6 files changed

+12
-34
lines changed

6 files changed

+12
-34
lines changed

Cargo.lock

Lines changed: 1 addition & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration-test/bins/Cargo.lock

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

multiboot2-header/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ derive_more.workspace = true
4747
# log.workspace = true
4848

4949
# used for MBI tags
50-
multiboot2 = "0.16.0"
50+
multiboot2 = "0.19.0"
5151

5252
[package.metadata.docs.rs]
5353
all-features = true

multiboot2-header/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-header`
22

3+
## 0.4.0 (2023-09-xx)
4+
- **BREAKING** MSRV is 1.68.0
5+
- **BREAKING** bumped `multiboot2` dependency to `v0.19.0`
6+
37
## 0.3.0 (2023-06-23)
48
- **BREAKING** MSRV is 1.68.0
59
- **BREAKING** renamed the `std` feature to `alloc`
6-
- **BREAKING** bumped dependency to `multiboot2@v0.16.0`
10+
- **BREAKING** bumped `multiboot2` dependency to `v0.16.0`
711
- **BREAKING** renamed `MULTIBOOT2_HEADER_MAGIC` to `MAGIC`
812
- **BREAKING** renamed `Multiboot2HeaderBuilder` to `HeaderBuilder`
913
- **BREAKING** renamed `from_addr` to `load`. The function now consumes a ptr.

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.68.0 stable.
72+
The MSRV is 1.69.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.68.0 stable.
34+
//! The MSRV is 1.69.0 stable.
3535
3636
#![no_std]
3737
#![cfg_attr(feature = "unstable", feature(error_in_core))]

0 commit comments

Comments
 (0)