فهرست منبع

multiboot2: release v0.17.0

Philipp Schuster 1 سال پیش
والد
کامیت
51f16f1894
4فایلهای تغییر یافته به همراه13 افزوده شده و 12 حذف شده
  1. 4 4
      multiboot2/Cargo.toml
  2. 2 1
      multiboot2/Changelog.md
  3. 4 4
      multiboot2/README.md
  4. 3 3
      multiboot2/src/lib.rs

+ 4 - 4
multiboot2/Cargo.toml

@@ -2,11 +2,11 @@
 name = "multiboot2"
 description = """
 Library that assists parsing the Multiboot2 Information Structure (MBI) from
-Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
-including full support for the sections of ELF-64. This library is `no_std` and can be
-used in a Multiboot2-kernel.
+Multiboot2-compliant bootloaders, such as GRUB. It supports all tags from the
+specification including full support for the sections of ELF files. This library
+is `no_std` and can be used in a Multiboot2-kernel.
 """
-version = "0.16.0"
+version = "0.17.0"
 authors = [
     "Philipp Oppermann <dev@phil-opp.com>",
     "Calvin Lee <cyrus296@gmail.com>",

+ 2 - 1
multiboot2/Changelog.md

@@ -1,5 +1,6 @@
 # CHANGELOG for crate `multiboot2`
-## Unreleased
+
+## 0.17.0 (2023-07-12)
 - **BREAKING** Make functions of `InformationBuilder` chainable. They now consume the builder.
 - **BREAKING** Allow non-standard memory area types by using new pair of
   corresponding types: `MemoryAreaTypeId` and `MemoryAreaType`.

+ 4 - 4
multiboot2/README.md

@@ -3,10 +3,10 @@
 [![crates.io](https://img.shields.io/crates/v/multiboot2.svg)](https://crates.io/crates/multiboot2)
 [![docs](https://docs.rs/multiboot2/badge.svg)](https://docs.rs/multiboot2/)
 
-Rust library that assists parsing the Multiboot2 Information Structure (MBI) from
-Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
-including full support for the sections of ELF-64 files. This library is `no_std` and can be
-used in a Multiboot2-kernel.
+Library that assists parsing the Multiboot2 Information Structure (MBI) from
+Multiboot2-compliant bootloaders, such as GRUB. It supports all tags from the
+specification including full support for the sections of ELF files. This library
+is `no_std` and can be used in a Multiboot2-kernel.
 
 It follows the Multiboot 2.0 specification at https://www.gnu.org/software/grub/manual/multiboot2/multiboot.html and the ELF 64 specification at http://www.uclibc.org/docs/elf-64-gen.pdf.
 

+ 3 - 3
multiboot2/src/lib.rs

@@ -10,9 +10,9 @@
 // --- END STYLE CHECKS ---
 
 //! Library that assists parsing the Multiboot2 Information Structure (MBI) from
-//! Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
-//! including full support for the sections of ELF-64. This library is `no_std` and can be
-//! used in a Multiboot2-kernel.
+//! Multiboot2-compliant bootloaders, such as GRUB. It supports all tags from the
+//! specification including full support for the sections of ELF files. This library
+//! is `no_std` and can be used in a Multiboot2-kernel.
 //!
 //! The GNU Multiboot(2) specification aims to provide a standardised
 //! method of sharing commonly used information about the host machine at