Procházet zdrojové kódy

multiboot2-header: prepare release v0.3.2

Philipp Schuster před 1 rokem
rodič
revize
4d4e213312

+ 7 - 7
Cargo.lock

@@ -4,9 +4,9 @@ version = 3
 
 [[package]]
 name = "bitflags"
-version = "2.4.0"
+version = "2.4.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
+checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
 
 [[package]]
 name = "derive_more"
@@ -38,7 +38,7 @@ dependencies = [
 
 [[package]]
 name = "multiboot2-header"
-version = "0.3.1"
+version = "0.3.2"
 dependencies = [
  "derive_more",
  "multiboot2",
@@ -46,9 +46,9 @@ dependencies = [
 
 [[package]]
 name = "proc-macro2"
-version = "1.0.67"
+version = "1.0.70"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
+checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b"
 dependencies = [
  "unicode-ident",
 ]
@@ -106,9 +106,9 @@ dependencies = [
 
 [[package]]
 name = "uguid"
-version = "2.0.1"
+version = "2.2.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "16dfbd255defbd727b3a30e8950695d2e6d045841ee250ff0f1f7ced17917f8d"
+checksum = "ab14ea9660d240e7865ce9d54ecdbd1cd9fa5802ae6f4512f093c7907e921533"
 
 [[package]]
 name = "unicode-ident"

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

@@ -107,7 +107,7 @@ dependencies = [
 
 [[package]]
 name = "multiboot2-header"
-version = "0.3.1"
+version = "0.3.2"
 dependencies = [
  "derive_more",
  "multiboot2",

+ 2 - 2
multiboot2-header/Cargo.toml

@@ -4,7 +4,7 @@ description = """
 Library with type definitions and parsing functions for Multiboot2 headers.
 This library is `no_std` and can be used in bootloaders.
 """
-version = "0.3.1"
+version = "0.3.2"
 authors = [
     "Philipp Schuster <phip1611@gmail.com>"
 ]
@@ -46,7 +46,7 @@ derive_more.workspace = true
 # Not yet used.
 # log.workspace = true
 
-# used for MBI tags
+# Used for MBI tags.
 multiboot2 = { version = "0.19.0", default-features = false }
 
 [package.metadata.docs.rs]

+ 14 - 2
multiboot2-header/Changelog.md

@@ -1,10 +1,18 @@
 # CHANGELOG for crate `multiboot2-header`
 
-## 0.4.0 (2023-09-xx)
-- **BREAKING** MSRV is 1.68.0
+## 0.3.2 (2023-11-30)
+
 - **BREAKING** bumped `multiboot2` dependency to `v0.19.0`
+- the `multiboot2` dependency doesn't pull in the `multiboot2/builder` feature
+  anymore
+- doc update
+
+## 0.3.1 (2023-06-28)
+
+- doc update
 
 ## 0.3.0 (2023-06-23)
+
 - **BREAKING** MSRV is 1.68.0
 - **BREAKING** renamed the `std` feature to `alloc`
 - **BREAKING** bumped `multiboot2` dependency to `v0.16.0`
@@ -17,18 +25,22 @@
   - implement `core::error::Error` for `LoadError`
 
 ## 0.2.0 (2022-05-03)
+
 - **BREAKING** renamed `EntryHeaderTag` to `EntryAddressHeaderTag`
 - **BREAKING** some paths changed from `multiboot2_header::header` to `multiboot2_header::builder`
    -> thus, import paths are much more logically now
 - internal code improvements
 
 ## 0.1.1 (2022-05-02)
+
 - fixed a bug that prevented the usage of the crate in `no_std` environments
 - added a new default `builder`-feature to Cargo which requires the `alloc`-crate
   (this feature can be disabled which will also remove the dependency to the `alloc` crate)
 
 ## 0.1.0 (2021-10-08)
+
 - initial release
 
 ## 0.0.0
+
 Empty release to save the name on crates.io