summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <mail@david-peter.de>2023-05-10 22:19:07 +0200
committerDavid Peter <david.peter@bosch.com>2023-05-10 22:19:07 +0200
commite10136d203cbd67b550e4b7ee8dcce4ec0303bb2 (patch)
tree836eca9a808211f250ae3d0a38212f04cf6d4a66
parent5f0373184fff5b66770a7591e2581aaf21fe3ae2 (diff)
Updates for 0.13v0.13.0
-rw-r--r--CHANGELOG.md15
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
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
diff --git a/Cargo.lock b/Cargo.lock
index 4dd380b..41dcc8e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -200,7 +200,7 @@ dependencies = [
[[package]]
name = "hexyl"
-version = "0.12.0"
+version = "0.13.0"
dependencies = [
"anyhow",
"assert_cmd",
diff --git a/Cargo.toml b/Cargo.toml
index a42ad88..a92aab1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"