Skip to content

Commit 21d0180

Browse files
release v0.6.0
Details in the CHANGELOG. Signed-off-by: Andreea Florescu <fandree@amazon.com>
1 parent 47a1984 commit 21d0180

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# [v0.6.0]
2+
3+
## Changed
4+
- Crate is now using edition 2021.
5+
6+
## Added
7+
- Derived `Eq` for `Error` types and the `PvhBootCapability` enum.
8+
9+
## Fixed
10+
- Fixed a bug in `load_cmdline` due to which the command line was not null
11+
terminated. This resulted in a change in the `Cmdline` API where instead of
12+
returning the cmdline as a String, we're now returning it as a `CString` as
13+
the latter has support for converting it to a null terminated bytes array.
14+
- Fixed an off-by-one error in load_cmdline, where we were doing validations
15+
on the first address after the command line memory region, instead of the
16+
last inclusive one of it.
17+
118
# [v0.5.0]
219

320
## Fixed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linux-loader"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Cathy Zhang <cathy.zhang@intel.com>"]
55
edition = "2021"
66
license = "Apache-2.0 AND BSD-3-Clause"

0 commit comments

Comments
 (0)