Skip to content

Commit 6917474

Browse files
committed
updated changelogs
1 parent cf6c1c6 commit 6917474

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

multiboot2-header/Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# CHANGELOG for crate `multiboot2-header`
22

3+
## v0.1.1 (2022-05-02)
4+
- fixed a bug that prevented the usage of the crate in `no_std` environments
5+
- added a new default `builder`-feature to Cargo which requires the `alloc`-crate
6+
(this feature can be disabled which will also remove the dependency to the `alloc` crate)
7+
8+
## v0.1.0 (2021-10-08)
9+
- initial release
10+
311
## v0.0.0
412
Empty release to save to name on crates.io

multiboot2/Changelog.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# CHANGELOG for crate `multiboot2`
22

3-
## 0.13.2
3+
## 0.13.2 (2022-05-02)
44
- `TagType` now implements `Ord` so that it can be used in `BTreeSet`
55
- small internal improvements and restructuring of the code (no breaking changes to public API)
66

7-
## 0.13.1
7+
## 0.13.1 (2022-01-09)
88
- minor fix
99

1010
## 0.13.0 (**yanked**)
1111
- added missing getters for tag `ImageLoadPhysAddr`
1212
- added missing getters for tags `EFIImageHandle32` and `EFIImageHandle64`
1313

14-
## 0.12.2
14+
## 0.12.2 (2021-10-02)
1515
- `TagType` now implements `Eq` and `Hash`
1616
- internal improvements
1717
- `std` can be used in tests; the crate is still `no_std`
@@ -23,34 +23,33 @@
2323
- prepared co-existence of crates `multiboot2` and `multiboot2-header`
2424
in a Cargo workspace inside the same repository
2525

26-
## 0.12.1
26+
## 0.12.1 (2021-08-11)
2727
- `TagType`-enum introduced in `v0.11` is now actually public
2828
- internal code improvements
2929

30-
## 0.12.0
31-
30+
## 0.12.0 (2021-08-06)
3231
- **breaking:** `load()` and `load_with_offset` now returns a result
3332
- added public constant `MULTIBOOT2_BOOTLOADER_MAGIC`
3433
- Rust edition 2018 (instead of 2015)
3534
- internal code improvements
3635

37-
## 0.11.0
36+
## 0.11.0 (2021-07-07)
3837

3938
- **breaking:** iterator functions (e.g. `ElfSectionsTag::sections()`) return `impl Iterator` instead of a concrete type
4039
- lib now contains `TagType`-enum that contains
4140
all possible mbi tags that are specified (taken from spec)
4241
- much improved debug-formatting of `BootInformation`
4342
- internal code improvements / formatting
4443

45-
## 0.10.0
44+
## 0.10.0 (2020-11-03)
4645
- allow access to all memory regions (MemoryMap-Tag)
4746
- internal code improvements
4847

49-
## 0.9.0
48+
## 0.9.0 (2020-07-06)
5049

5150
- Add a `checksum_is_valid` method to the RSDP tags ([#64](https://github.com/rust-osdev/multiboot2/pull/64))
5251

53-
## 0.8.2
52+
## 0.8.2 (2022-03-02)
5453

5554
- Add some basic documentation ([#62](https://github.com/rust-osdev/multiboot2/pull/62))
5655
- Add MemoryAreaType, to allow users to access memory area types in a type-safe way ([#61](https://github.com/rust-osdev/multiboot2/pull/61))

0 commit comments

Comments
 (0)