Răsfoiți Sursa

multiboot2-common: prepare release

Fix missing README :D
Philipp Schuster 7 luni în urmă
părinte
comite
9c3d095f26

+ 1 - 1
Cargo.lock

@@ -39,7 +39,7 @@ dependencies = [
 
 [[package]]
 name = "multiboot2-common"
-version = "0.1.0"
+version = "0.1.1"
 dependencies = [
  "derive_more",
  "ptr_meta",

+ 1 - 1
integration-test/bins/Cargo.lock

@@ -108,7 +108,7 @@ dependencies = [
 
 [[package]]
 name = "multiboot2-common"
-version = "0.1.0"
+version = "0.1.1"
 dependencies = [
  "derive_more",
  "ptr_meta",

+ 1 - 1
multiboot2-common/Cargo.toml

@@ -3,7 +3,7 @@ name = "multiboot2-common"
 description = """
 Common helpers for the `multiboot2` and `multiboot2-header` crates.
 """
-version = "0.1.0"
+version = "0.1.1"
 authors = [
     "Philipp Schuster <phip1611@gmail.com>"
 ]

+ 1 - 1
multiboot2-common/Changelog.md

@@ -1,5 +1,5 @@
 # CHANGELOG for crate `multiboot2`
 
-## 0.1.0 (2024-08-20)
+## 0.1.0 / 0.1.1 (2024-08-20)
 
 Initial release.

+ 14 - 0
multiboot2-common/README.md

@@ -1 +1,15 @@
 # multiboot2-common
+
+[![crates.io](https://img.shields.io/crates/v/multiboot2-common.svg)](https://crates.io/crates/multiboot2-common)
+[![docs](https://docs.rs/multiboot2-common/badge.svg)](https://docs.rs/multiboot2-common/)
+
+Common helpers for the `multiboot2` and `multiboot2-header` crates.
+
+## MSRV
+
+The MSRV is 1.70.0 stable.
+
+## License & Contribution
+
+See main [README](https://github.com/rust-osdev/multiboot2/blob/main/README.md)
+file.

+ 1 - 1
multiboot2-header/Cargo.toml

@@ -45,7 +45,7 @@ derive_more.workspace = true
 log.workspace = true
 ptr_meta.workspace = true
 multiboot2 = { version = "0.22.0", default-features = false }
-multiboot2-common = "0.1.0"
+multiboot2-common = "0.1.1"
 
 [package.metadata.docs.rs]
 all-features = true

+ 1 - 1
multiboot2/Cargo.toml

@@ -46,7 +46,7 @@ bitflags.workspace = true
 derive_more.workspace = true
 log.workspace = true
 ptr_meta.workspace = true
-multiboot2-common = { version = "0.1.0", default-features = false }
+multiboot2-common = { version = "0.1.1", default-features = false }
 
 # We only use a very basic type definition from this crate. To prevent MSRV
 # bumps from uefi-raw, I restrict this here. Upstream users are likely to have