diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index d8166f8..42bf143 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -41,7 +41,7 @@ body: attributes: label: Reproduction Version description: The latest version that reproduces the issue (check `gh fzf version`) - placeholder: v0.11.0 # x-release-please-version + placeholder: v0.12.0 # x-release-please-version validations: required: true - type: input diff --git a/CHANGELOG.md b/CHANGELOG.md index af7e953..51b751e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.12.0](https://github.com/benelan/gh-fzf/compare/v0.11.0...v0.12.0) (2024-06-03) + + +### Features + +* **milestone, issue:** Add `milestone` command and an `alt-M` keybinding for the `issue` command, which filters by the selected milestone ([#23](https://github.com/benelan/gh-fzf/issues/23)) ([86cb9da](https://github.com/benelan/gh-fzf/commit/86cb9dad3e3edd2ad57f3742d12cbeac1af66d12)), closes [#21](https://github.com/benelan/gh-fzf/issues/21) +* **issue, pr:** Support fzf multi-selection when adding or removing labels via `alt-l` or `alt-L` keybindings, respectively ([cac5f20](https://github.com/benelan/gh-fzf/commit/cac5f209d27b5958eaa8d0e7b042522953a24ec7)) +* **label:** Include the selected label's name in the prompt for editing the name via `alt-n`, description via `alt-d`, and color via `alt-c` ([d45ea06](https://github.com/benelan/gh-fzf/commit/d45ea067405e0973b88fae84bb27cdcfeab6c3df)) +* **label:** Reload list after the edit keybindings (`alt-n`, `alt-d`, `alt-c`) to ensure info is up to date ([b76453a](https://github.com/benelan/gh-fzf/commit/b76453a1bec2ceeb3875b5ed4a239146df07e3d6)) +* **run:** Prompt to rerun (if failed) after viewing logs via the `dunstify` notification action ([ff14747](https://github.com/benelan/gh-fzf/commit/ff1474732b3bab78bf2d5fddf5bf86773ce04184)) + + +### Bug Fixes + +* **issue, pr:** Exit with code 0 after checking out a branch via the `alt-o` keybindings ([2dbea75](https://github.com/benelan/gh-fzf/commit/2dbea75be3260cbcd89555901f978cefa927ba43)) +* **label:** Fix regression where `enter` keybinding printed the whole row of the selected item(s), rather than only the name ([44bd0af](https://github.com/benelan/gh-fzf/commit/44bd0afbb347e3d41e7254f298e3952d16202590)) +* **run:** Fix the message/format of notifications when the watcher's process is killed before completion ([b419d35](https://github.com/benelan/gh-fzf/commit/b419d352e78fdc3ad1beaad452932c7d5d2ac40a)) + + ## [0.11.0](https://github.com/benelan/gh-fzf/compare/v0.10.0...v0.11.0) (2024-05-31) diff --git a/gh-fzf b/gh-fzf index 2c55aac..bd1271f 100755 --- a/gh-fzf +++ b/gh-fzf @@ -26,7 +26,7 @@ set -e # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -GH_FZF_VERSION="v0.11.0" # x-release-please-version +GH_FZF_VERSION="v0.12.0" # x-release-please-version # USAGE INFO AND LOGS {{{1