diff --git a/CHANGELOG.md b/CHANGELOG.md index 7854f7b..2bb9312 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased](https://github.com/Piturnah/gex/compare/v0.6.3...main) +## [0.6.4](https://github.com/Piturnah/gex/compare/v0.6.3...v0.6.4) - 2023-11-12 ### Added - Configuration options for navigation keymaps ([#77](https://github.com/Piturnah/gex/pull/77)), thanks **@LukeHalasy**! - Config option `sort_branches` to sort the branch list by some key ([#84](https://github.com/Piturnah/gex/pull/84)), thanks **@LukeHalasy**! @@ -8,6 +8,7 @@ - New config option: `options.editor` ### Fixed - Minibuffer border messed up on terminal resize ([#65](https://github.com/Piturnah/gex/pull/65)) +- Couldn't use Esc to cancel creating new branch ([#78](https://github.com/Piturnah/gex/issues/78)) ## [0.6.3](https://github.com/Piturnah/gex/compare/v0.6.2...v0.6.3) - 2023-08-30 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index ebff9a1..5101c2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -226,7 +226,7 @@ dependencies = [ [[package]] name = "gex" -version = "0.6.4-dev" +version = "0.6.4" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 315996c..26cef3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gex" -version = "0.6.4-dev" +version = "0.6.4" edition = "2021" categories = ["command-line-utilities", "development-tools"] description = "Git workflow improvement CLI tool inspired by Magit"