summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2020-08-02 15:56:02 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2020-08-02 15:56:02 +0900
commite2ae1b249cf2d5258b552cfd682c7c0911981e9b (patch)
treedd1b2ea44e6b71aa60bac8ad88ad134a92249fd1
parent92b7efafcacfa5c5de2a8f22abd859b8fc994748 (diff)
0.22.00.22.0
-rw-r--r--CHANGELOG.md2
-rwxr-xr-xinstall2
-rw-r--r--install.ps12
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
6 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5126d4cb..6d07b93b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
CHANGELOG
=========
-0.22.0 (WIP)
+0.22.0
------
- Added more options for `--bind`
- `backward-eof` event
diff --git a/install b/install
index 7e369241..040b0b31 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.21.1
+version=0.22.0
auto_completion=
key_bindings=
update_config=2
diff --git a/install.ps1 b/install.ps1
index 2c537f9a..80c5b6fe 100644
--- a/install.ps1
+++ b/install.ps1
@@ -1,4 +1,4 @@
-$version="0.21.1"
+$version="0.22.0"
if ([Environment]::Is64BitProcess) {
$binary_arch="amd64"
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index f78f76c5..060f3aa1 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 "Jun 2020" "fzf 0.22.0" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Aug 2020" "fzf 0.22.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 ed8328c2..becde6af 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 "Jul 2020" "fzf 0.22.0" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Aug 2020" "fzf 0.22.0" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder
diff --git a/src/constants.go b/src/constants.go
index 07f0a250..b00b44ac 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -10,7 +10,7 @@ import (
const (
// Current version
- version = "0.21.1"
+ version = "0.22.0"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond