summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2023-11-12 22:08:08 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2023-11-12 22:08:08 +0900
commit7320b7df62039c879c4f609bca946ea09b438a98 (patch)
treeb44fa9ec8910fad8201b0d23176cc59c94a7ff02
parent11fb4233f74ad8ca068ad15f1ec09bd8ff2953ee (diff)
0.44.00.44.0
-rw-r--r--Makefile4
-rwxr-xr-xinstall2
-rw-r--r--install.ps12
-rw-r--r--main.go2
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/tui/tcell.go2
7 files changed, 10 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 74953937..a55c6bdb 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 1e8251a5..792184fb 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 3ca87c3c..692d1f89 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 ba8d0fab..22e47b33 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 383f20cd..26f1b2cc 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 6efd8a12..0d8e0dde 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 38641f7a..bcbae7f3 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) {}