Skip to content

Commit 47eb68f

Browse files
committed
v0.26
1 parent fb99fa3 commit 47eb68f

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [unreleased]
44

5+
6+
## [0.26] 2021-06-15
57
### Added
68

79
- [neovim] Add zindex option to fix the tricky floating_win overlapping, and add border for the preview window, use `let g:clap_popup_border = 'nil'` to disable the order. #693

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "maple"
33
build = "build.rs"
44
edition = "2018"
5-
version = "0.1.25"
5+
version = "0.1.26"
66
license = "MIT"
77
publish = false
88
include = ["/Cargo.toml", "src/*.rs"]

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env pwsh
22

3-
$version = 'v0.25'
3+
$version = 'v0.26'
44
$APP = 'maple'
55
$url = "https://github.com/liuchengxu/vim-clap/releases/download/$version/$APP-"
66
$output = "$PSScriptRoot\bin\$APP.exe"

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -u
44

5-
version=v0.25
5+
version=v0.26
66

77
APP=maple
88

plugin/clap.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" vim-clap - Modern interactive filter and dispatcher
22
" Author: Liu-Cheng Xu <[email protected]>
33
" Website: https://github.com/liuchengxu/vim-clap
4-
" Version: 0.25
4+
" Version: 0.26
55
" License: MIT
66

77
if exists('g:loaded_clap')

scripts/update_release_note.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd "$(dirname "${BASH_SOURCE[0]}")"
44

5-
new_tag=v0.25
5+
new_tag=v0.26
66
# If the latest tag is v0.10, returns v0.9
77
prev_tag=$(git describe --abbrev=0 --tags "$(git rev-list --tags --skip=1 --max-count=1)")
88
changelog=$(../ci/get_changelog.sh "$new_tag" "$prev_tag")

0 commit comments

Comments
 (0)