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