diff --git a/.recent-changelog-entry b/.recent-changelog-entry index 47fa81d85b..5603566c2c 100644 --- a/.recent-changelog-entry +++ b/.recent-changelog-entry @@ -1,6 +1,12 @@ -## [0.13.1] - 2024-04-04 +## [0.14.0] - 2024-04-06 + +### 🚀 Features + +- Remove move p/n from default bindings (move up/down) +- Make keybinds configurable ### 🐛 Bug Fixes -- Handle EDITOR args, and better deal with absolute paths +- Existing terminal text would bleed into gitu on startup +- Discarding staged files would not work & use git clean for removing untracked files diff --git a/CHANGELOG.md b/CHANGELOG.md index 68d4e80da1..49f5e97633 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [0.14.0] - 2024-04-06 + +### 🚀 Features + +- Remove move p/n from default bindings (move up/down) +- Make keybinds configurable + +### 🐛 Bug Fixes + +- Existing terminal text would bleed into gitu on startup +- Discarding staged files would not work & use git clean for removing untracked files + ## [0.13.1] - 2024-04-04 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index b8b4c759ad..40b9141490 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -531,7 +531,7 @@ dependencies = [ [[package]] name = "gitu" -version = "0.13.1" +version = "0.14.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 85f0ff8715..ddccfa0894 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitu" description = "A git client inspired by Magit" -version = "0.13.1" +version = "0.14.0" edition = "2021" license = "MIT"