diff options
author | David Peter <mail@david-peter.de> | 2023-05-10 22:19:07 +0200 |
---|---|---|
committer | David Peter <david.peter@bosch.com> | 2023-05-10 22:19:07 +0200 |
commit | e10136d203cbd67b550e4b7ee8dcce4ec0303bb2 (patch) | |
tree | 836eca9a808211f250ae3d0a38212f04cf6d4a66 | |
parent | 5f0373184fff5b66770a7591e2581aaf21fe3ae2 (diff) |
Updates for 0.13v0.13.0
-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" |