From 7320b7df62039c879c4f609bca946ea09b438a98 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 12 Nov 2023 22:08:08 +0900 Subject: [PATCH] 0.44.0 --- Makefile | 4 ++++ install | 2 +- install.ps1 | 2 +- main.go | 2 +- man/man1/fzf-tmux.1 | 2 +- man/man1/fzf.1 | 2 +- src/tui/tcell.go | 2 +- 7 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 7495393..a55c6bd 100644 --- a/Makefile +++ b/Makefile @@ -93,6 +93,10 @@ build: goreleaser build --rm-dist --snapshot --skip-post-hooks release: + # Make sure that the tests pass and the build works + TAGS=tcell make test + make test build clean + ifndef GITHUB_TOKEN $(error GITHUB_TOKEN is not defined) endif diff --git a/install b/install index 1e8251a..792184f 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ set -u -version=0.43.0 +version=0.44.0 auto_completion= key_bindings= update_config=2 diff --git a/install.ps1 b/install.ps1 index 3ca87c3..692d1f8 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,4 +1,4 @@ -$version="0.43.0" +$version="0.44.0" $fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition diff --git a/main.go b/main.go index ba8d0fa..22e47b3 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import ( "github.com/junegunn/fzf/src/protector" ) -var version string = "0.43" +var version string = "0.44" var revision string = "devel" func main() { diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1 index 383f20c..26f1b2c 100644 --- a/man/man1/fzf-tmux.1 +++ b/man/man1/fzf-tmux.1 @@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. -.TH fzf-tmux 1 "Oct 2023" "fzf 0.43.0" "fzf-tmux - open fzf in tmux split pane" +.TH fzf-tmux 1 "Nov 2023" "fzf 0.44.0" "fzf-tmux - open fzf in tmux split pane" .SH NAME fzf-tmux - open fzf in tmux split pane diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index 6efd8a1..0d8e0dd 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. -.TH fzf 1 "Oct 2023" "fzf 0.43.1" "fzf - a command-line fuzzy finder" +.TH fzf 1 "Nov 2023" "fzf 0.44.0" "fzf - a command-line fuzzy finder" .SH NAME fzf - a command-line fuzzy finder diff --git a/src/tui/tcell.go b/src/tui/tcell.go index 38641f7..bcbae7f 100644 --- a/src/tui/tcell.go +++ b/src/tui/tcell.go @@ -100,7 +100,7 @@ const ( func (r *FullscreenRenderer) PassThrough(str string) { // No-op - // https://github.com/gdamore/tcell/issues/363#issuecomment-680665073 + // https://github.com/gdamore/tcell/pull/650#issuecomment-1806442846 } func (r *FullscreenRenderer) Resize(maxHeightFunc func(int) int) {}