File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
18
# [ v0.5.0]
2
19
3
20
## Fixed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " linux-loader"
3
- version = " 0.5 .0"
3
+ version = " 0.6 .0"
4
4
authors = [" Cathy Zhang <cathy.zhang@intel.com>" ]
5
5
edition = " 2021"
6
6
license = " Apache-2.0 AND BSD-3-Clause"
You can’t perform that action at this time.
0 commit comments