Skip to content

Commit 111ef62

Browse files
committed
0.27
Close #725
1 parent 2e287bd commit 111ef62

File tree

8 files changed

+11
-7
lines changed

8 files changed

+11
-7
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.27] 2021-07-22
57
### Added
68

79
- Add a new provider `recent_files` for recent files history, which is persistent and can keep up to 10,000 entries ordered by [Frecency](https://en.wikipedia.org/wiki/Frecency). #724

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.26"
5+
version = "0.1.27"
66
license = "MIT"
77
publish = false
88
include = ["/Cargo.toml", "src/*.rs"]

autoload/clap/state.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ endfunction
4848
function! clap#state#handle_response_on_typed(result, error) abort
4949
if a:error isnot v:null
5050
call clap#indicator#set_matches_number(0)
51-
call g:clap.display.set_lines([a:error.message])
51+
if has_key(a:error, 'message')
52+
call g:clap.display.set_lines([a:error.message])
53+
endif
5254
return
5355
endif
5456

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.26'
3+
$version = 'v0.27'
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.26
5+
version=v0.27
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.26
4+
" Version: 0.27
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.26
5+
new_tag=v0.27
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)