diff --git a/CHANGELOG.md b/CHANGELOG.md index afd3303..e7a2158 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project _somewhat_ adheres to [Semantic Versioning](https://semver.org/ ## [Unreleased] +## [0.6.0] - 2024-07-28 + +- Support searching by hex +- Remove 0x searching functionality +- Bump ratatui from 0.26.1 to 0.26.2 + ## [0.5.0] - 2023-04-08 - Fixed a bug where '--version' did not print `heh`'s version (thanks for the report, [@davidak](https://github.com/davidak)) @@ -38,4 +44,4 @@ and this project _somewhat_ adheres to [Semantic Versioning](https://semver.org/ - MSRV bumped from 1.64.0 to 1.65.0 - memmap2 and crossbeam added as dependencies - There was an error with CI that was fixed -- This release is 1191568 bytes on my machine, up from 1121936 in 0.3.0 \ No newline at end of file +- This release is 1191568 bytes on my machine, up from 1121936 in 0.3.0 diff --git a/Cargo.lock b/Cargo.lock index fcb8c55..3dadcdc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -330,7 +330,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "heh" -version = "0.5.0" +version = "0.6.0" dependencies = [ "arboard", "clap", diff --git a/Cargo.toml b/Cargo.toml index 56ea17d..6a87fc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heh" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "A cross-platform terminal UI used for modifying file data in hex or ASCII." readme = "README.md"