Skip to content

Commit

Permalink
release: 0.4.0 (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndd7xv authored Jul 26, 2023
1 parent 552e19e commit e6e7a82
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
submodules: true
- name: Install stable
uses: dtolnay/rust-toolchain@stable
- name: Install nightly for -Zminimal-versions
- name: Install nightly for -Zdirect-minimal-versions
uses: dtolnay/rust-toolchain@nightly
- name: rustup default stable
run: rustup default stable
- name: cargo update -Zminimal-versions
run: cargo +nightly update -Zminimal-versions
- name: cargo update -Zdirect-minimal-versions
run: cargo +nightly update -Zdirect-minimal-versions
- name: cargo test
run: cargo test --locked --all-features --all-targets
os-check:
Expand Down
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project _somewhat_ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.4.0] - 2023-07-25

### Added

- This CHANGELOG file. This may be retroactively modified solely include changes earlier versions.
- You can now switch the endianness displayed on the labels with `control e` (thanks, [@JungleTryne](https://github.com/JungleTryne))!
- You can now open big files (thanks, [@Programatic](https://github.com/Programatic))! Note that this isn't a fully completed and perfected feature, and some things may still run slowly. Please [submit a bug report](https://github.com/ndd7xv/heh/issues) if you notice an issue.
- There are now templates for submitting issues; not required but there in case someone finds it useful

### Changed

- Search allows for iterating through all matched patterns with `control n` and `control p` (thanks, [@joooooooooooooooooooooooooooooooooooosh](https://github.com/joooooooooooooooooooooooooooooooooooosh)!)
- `heh` switched its dependency from `tui` to `ratatui`

### Other Notes

- 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
26 changes: 20 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heh"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "A cross-platform terminal UI used for modifying file data in hex or ASCII."
readme = "README.md"
Expand All @@ -12,11 +12,11 @@ rust-version = "1.65.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tui = {package = "ratatui", version = "0.21", default-features = false, features = ["crossterm"]}
crossterm = "0.26"
clap = { version = "4.3", features = ["derive"] }
arboard = { version = "3.2", default-features = false }
memmap2 = "0.5.10"
tui = {package = "ratatui", version = "0.22.0", default-features = false, features = ["crossterm"]}
crossterm = "0.26.1"
clap = { version = "4.3.19", features = ["derive"] }
arboard = { version = "3.2.0", default-features = false }
memmap2 = "0.7.1"
crossbeam = "0.8.2"

[profile.dev]
Expand Down

0 comments on commit e6e7a82

Please sign in to comment.