diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bb5e80..72804bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## v1.3.0 (2024-09-08) +*** +- locate editor executable using `which` crate +- add `-w`/`--word-regexp` arg +- add option to open Context Viewer at startup +- add follow symlinks option +- ability to specify custom command +- read custom editor from environment +- add `less` as an editor option +- add a keybindings popup +- add keybindings for changing context viewer size +- fix flushing infinitely when opening nvim with no results found + ## v1.2.0 (2023-08-08) *** - support multiple search paths diff --git a/Cargo.lock b/Cargo.lock index 435d4be..19105b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -497,7 +497,7 @@ dependencies = [ [[package]] name = "igrep" -version = "1.2.0" +version = "1.3.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 41a4d24..8bc389d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "igrep" -version = "1.2.0" +version = "1.3.0" authors = ["Konrad Szymoniak "] license = "MIT" description = "Interactive Grep" diff --git a/HomebrewFormula/igrep.rb b/HomebrewFormula/igrep.rb index 1ca78d7..faad2f9 100644 --- a/HomebrewFormula/igrep.rb +++ b/HomebrewFormula/igrep.rb @@ -1,9 +1,9 @@ class Igrep < Formula - version "1.2.0" + version "1.3.0" desc "Interactive Grep" homepage "https://github.com/konradsz/igrep" url "https://github.com/konradsz/igrep/releases/download/v#{version}/igrep-v#{version}-x86_64-apple-darwin.tar.gz" - sha256 "f987d7659654b45d84989dd6cf8a491aaba70369b0caf4d5cb8fd88294885ed0" + sha256 "33908e25d904d7652f2bc749a16beaae86b9529f83aeae8ca6834dddfc2b0a9d" def install bin.install "ig"