diff options
-rw-r--r-- | CHANGELOG.md | 15 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 |
3 files changed, 17 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f29efde..59d3e03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# v0.13.0 + +## Features + +- Support both little and big Endian dumps using `--endianness={little,big}`, see #189 and #104 (@RinHizakura) + +## Changes + +- **Breaking**: Changed the meaning of the short flag `-C` to be consistent with `hexdump -C`. Previously, this would *hide* the character panel, but now `-C` *shows* the character panel, in case it has been previously (e.g. in an `alias`) disabled with `--no-characters`, see #187 (@sharkdp) + +## `hexyl` as a library + +- New `endianness` method for `PrinterBuilder` + + # v0.12.0 ## Features @@ -200,7 +200,7 @@ dependencies = [ [[package]] name = "hexyl" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anyhow", "assert_cmd", @@ -7,7 +7,7 @@ license = "MIT/Apache-2.0" name = "hexyl" readme = "README.md" repository = "https://github.com/sharkdp/hexyl" -version = "0.12.0" +version = "0.13.0" edition = "2021" rust-version = "1.60" |