Skip to content

Commit 9e92b6f

Browse files
committed
0.54.0
New tags will have `v` prefix. * #2879 * golang/go#32945 Close #2879
1 parent 6cbde81 commit 9e92b6f

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

.goreleaser.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ release:
109109
owner: junegunn
110110
name: fzf
111111
prerelease: auto
112-
name_template: '{{ .Tag }}'
112+
name_template: '{{ .Version }}'
113113
extra_files:
114114
- glob: ./dist/fzf-*darwin*.zip
115115

116116
snapshot:
117-
name_template: "{{ .Tag }}-devel"
117+
name_template: "{{ .Version }}-devel"
118118

119119
changelog:
120120
sort: asc

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ CHANGELOG
33

44
0.54.0
55
------
6+
_Release highlights: https://junegunn.github.io/fzf/releases/0.54.0/_
7+
68
- Implemented line wrap of long items
79
- `--wrap` option enables line wrap
810
- `--wrap-sign` customizes the sign for wrapped lines (default: ``)
@@ -54,9 +56,12 @@ CHANGELOG
5456
- zsh 5.0 compatibility (thanks to @LangLangBart)
5557
- Fixed `--walker-skip` to also skip symlinks to directories
5658
- Fixed `result` event not fired when input stream is not complete
59+
- New tags will have `v` prefix so that they are available on https://proxy.golang.org/
5760

5861
0.53.0
5962
------
63+
_Release highlights: https://junegunn.github.io/fzf/releases/0.53.0/_
64+
6065
- Multi-line display
6166
- See [Processing multi-line items](https://junegunn.github.io/fzf/tips/processing-multi-line-items/)
6267
- fzf can now display multi-line items

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ SOURCES := $(wildcard *.go src/*.go src/*/*.go shell/*sh man/man1/*.1) $(
99
ifdef FZF_VERSION
1010
VERSION := $(FZF_VERSION)
1111
else
12-
VERSION := $(shell git describe --abbrev=0 2> /dev/null)
12+
VERSION := $(shell git describe --abbrev=0 2> /dev/null | sed "s/^v//")
1313
endif
1414
ifeq ($(VERSION),)
1515
$(error Not on git repository; cannot determine $$FZF_VERSION)
1616
endif
17-
VERSION_TRIM := $(shell sed "s/-.*//" <<< $(VERSION))
17+
VERSION_TRIM := $(shell sed "s/^v//; s/-.*//" <<< $(VERSION))
1818
VERSION_REGEX := $(subst .,\.,$(VERSION_TRIM))
1919

2020
ifdef FZF_REVISION

install

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -u
44

5-
version=0.53.0
5+
version=0.54.0
66
auto_completion=
77
key_bindings=
88
update_config=2
@@ -146,7 +146,7 @@ download() {
146146
fi
147147

148148
local url
149-
url=https://github.com/junegunn/fzf/releases/download/$version/${1}
149+
url=https://github.com/junegunn/fzf/releases/download/v$version/${1}
150150
set -o pipefail
151151
if ! (try_curl $url || try_wget $url); then
152152
set +o pipefail

install.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$version="0.53.0"
1+
$version="0.54.0"
22

33
$fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition
44

@@ -40,7 +40,7 @@ function download {
4040
return
4141
}
4242
cd "$fzf_base\bin"
43-
$url="https://github.com/junegunn/fzf/releases/download/$version/$file"
43+
$url="https://github.com/junegunn/fzf/releases/download/v$version/$file"
4444
$temp=$env:TMP + "\fzf.zip"
4545
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
4646
if ($PSVersionTable.PSVersion.Major -ge 3) {

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/junegunn/fzf/src/protector"
1212
)
1313

14-
var version = "0.53"
14+
var version = "0.54"
1515
var revision = "devel"
1616

1717
//go:embed shell/key-bindings.bash

man/man1/fzf-tmux.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf\-tmux 1 "Jun 2024" "fzf 0.53.0" "fzf\-tmux - open fzf in tmux split pane"
24+
.TH fzf\-tmux 1 "Jul 2024" "fzf 0.54.0" "fzf\-tmux - open fzf in tmux split pane"
2525

2626
.SH NAME
2727
fzf\-tmux - open fzf in tmux split pane

man/man1/fzf.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf 1 "Jun 2024" "fzf 0.54.0" "fzf - a command-line fuzzy finder"
24+
.TH fzf 1 "Jul 2024" "fzf 0.54.0" "fzf - a command-line fuzzy finder"
2525

2626
.SH NAME
2727
fzf - a command-line fuzzy finder

0 commit comments

Comments
 (0)