Skip to content

Commit

Permalink
v0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
liuchengxu committed Jun 28, 2020
1 parent b661fc4 commit 60565eb
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 2 additions & 0 deletions autoload/clap/filter.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -u

version=v0.18
version=v0.19

APP=maple

Expand Down
2 changes: 1 addition & 1 deletion plugin/clap.vim
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
" vim-clap - Modern interactive filter and dispatcher
" Author: Liu-Cheng Xu <xuliuchengxlc@gmail.com>
" Website: https://github.com/liuchengxu/vim-clap
" Version: 0.18
" Version: 0.19
" License: MIT

if exists('g:loaded_clap')
Expand Down
2 changes: 1 addition & 1 deletion scripts/update_release_note.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 60565eb

Please sign in to comment.