Skip to content

Commit

Permalink
release v0.6.0
Browse files Browse the repository at this point in the history
Details in the CHANGELOG.

Signed-off-by: Andreea Florescu <fandree@amazon.com>
  • Loading branch information
andreeaflorescu committed Sep 23, 2022
1 parent 47a1984 commit 21d0180
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# [v0.6.0]

## Changed
- Crate is now using edition 2021.

## Added
- Derived `Eq` for `Error` types and the `PvhBootCapability` enum.

## Fixed
- Fixed a bug in `load_cmdline` due to which the command line was not null
terminated. This resulted in a change in the `Cmdline` API where instead of
returning the cmdline as a String, we're now returning it as a `CString` as
the latter has support for converting it to a null terminated bytes array.
- Fixed an off-by-one error in load_cmdline, where we were doing validations
on the first address after the command line memory region, instead of the
last inclusive one of it.

# [v0.5.0]

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linux-loader"
version = "0.5.0"
version = "0.6.0"
authors = ["Cathy Zhang <cathy.zhang@intel.com>"]
edition = "2021"
license = "Apache-2.0 AND BSD-3-Clause"
Expand Down

0 comments on commit 21d0180

Please sign in to comment.