Skip to content

Commit 9c3d095

Browse files
committed
multiboot2-common: prepare release
Fix missing README :D
1 parent 80c41b2 commit 9c3d095

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
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: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

multiboot2-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "multiboot2-common"
33
description = """
44
Common helpers for the `multiboot2` and `multiboot2-header` crates.
55
"""
6-
version = "0.1.0"
6+
version = "0.1.1"
77
authors = [
88
"Philipp Schuster <[email protected]>"
99
]

multiboot2-common/Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CHANGELOG for crate `multiboot2`
22

3-
## 0.1.0 (2024-08-20)
3+
## 0.1.0 / 0.1.1 (2024-08-20)
44

55
Initial release.

multiboot2-common/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
11
# multiboot2-common
2+
3+
[![crates.io](https://img.shields.io/crates/v/multiboot2-common.svg)](https://crates.io/crates/multiboot2-common)
4+
[![docs](https://docs.rs/multiboot2-common/badge.svg)](https://docs.rs/multiboot2-common/)
5+
6+
Common helpers for the `multiboot2` and `multiboot2-header` crates.
7+
8+
## MSRV
9+
10+
The MSRV is 1.70.0 stable.
11+
12+
## License & Contribution
13+
14+
See main [README](https://github.com/rust-osdev/multiboot2/blob/main/README.md)
15+
file.

multiboot2-header/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ derive_more.workspace = true
4545
log.workspace = true
4646
ptr_meta.workspace = true
4747
multiboot2 = { version = "0.22.0", default-features = false }
48-
multiboot2-common = "0.1.0"
48+
multiboot2-common = "0.1.1"
4949

5050
[package.metadata.docs.rs]
5151
all-features = true

multiboot2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ bitflags.workspace = true
4646
derive_more.workspace = true
4747
log.workspace = true
4848
ptr_meta.workspace = true
49-
multiboot2-common = { version = "0.1.0", default-features = false }
49+
multiboot2-common = { version = "0.1.1", default-features = false }
5050

5151
# We only use a very basic type definition from this crate. To prevent MSRV
5252
# bumps from uefi-raw, I restrict this here. Upstream users are likely to have

0 commit comments

Comments
 (0)