diff --git a/CHANGELOG.md b/CHANGELOG.md index a7a524455..ad2aa2e5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ CHANGELOG ## [unreleased] +## [0.19] 2020-06-28 + ### Added - Add `clap#run(provider)` which is similar to `fzf#run()`. The argument `provider` is a Dict like `g:clap_provider_foo` with an optional extra field specifying the provider id. It can used for adhoc running, don't use it with a `source` that probably has a fair mount of items as it's normally undeveloped in performance. [#433](https://github.com/liuchengxu/vim-clap/issues/433) diff --git a/Cargo.lock b/Cargo.lock index 7096fba82..067067df3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -759,7 +759,7 @@ dependencies = [ [[package]] name = "maple" -version = "0.1.18" +version = "0.1.19" dependencies = [ "built", "maple_cli", diff --git a/Cargo.toml b/Cargo.toml index 5955b83bf..5c62a4ac6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "maple" build = "build.rs" edition = "2018" -version = "0.1.18" +version = "0.1.19" license = "MIT" publish = false include = ["/Cargo.toml", "src/*.rs"] diff --git a/autoload/clap/filter.vim b/autoload/clap/filter.vim index 5df57cc93..66a1f39a6 100644 --- a/autoload/clap/filter.vim +++ b/autoload/clap/filter.vim @@ -24,6 +24,8 @@ else let s:builtin_filter_capacity = 10000 endif +let s:builtin_filter_capacity = 1000 + function! clap#filter#beyond_capacity(size) abort return a:size > s:builtin_filter_capacity endfunction diff --git a/install.ps1 b/install.ps1 index 07fa1cfeb..37383b2fc 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ #!/usr/bin/env pwsh -$version = 'v0.18' +$version = 'v0.19' $APP = 'maple' $url = "https://github.com/liuchengxu/vim-clap/releases/download/$version/$APP-" $output = "$PSScriptRoot\bin\$APP.exe" diff --git a/install.sh b/install.sh index 36f7046a8..2ad7b6274 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ set -u -version=v0.18 +version=v0.19 APP=maple diff --git a/plugin/clap.vim b/plugin/clap.vim index 7f7e2e39a..ca199a0a8 100644 --- a/plugin/clap.vim +++ b/plugin/clap.vim @@ -1,7 +1,7 @@ " vim-clap - Modern interactive filter and dispatcher " Author: Liu-Cheng Xu " Website: https://github.com/liuchengxu/vim-clap -" Version: 0.18 +" Version: 0.19 " License: MIT if exists('g:loaded_clap') diff --git a/scripts/update_release_note.sh b/scripts/update_release_note.sh index 4d6f9bf8d..f6fa8f81a 100755 --- a/scripts/update_release_note.sh +++ b/scripts/update_release_note.sh @@ -2,7 +2,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")" -new_tag=v0.18 +new_tag=v0.19 # If the latest tag is v0.10, returns v0.9 prev_tag=$(git describe --abbrev=0 --tags "$(git rev-list --tags --skip=1 --max-count=1)") changelog=$(../ci/get_changelog.sh "$new_tag" "$prev_tag")