diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c57e0e78..54d5cfa03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ CHANGELOG ## [unreleased] +## [0.12] 2020-04-12 + ### Added - Add `--content-filtering` in maple. You can use `:Clap files +name-only ~` to filter the file name instead of full file path, but you can only use it when clap is using the cached tempfile inside vim. diff --git a/Cargo.lock b/Cargo.lock index 1efe0aae5..c8ac4361b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "maple" -version = "0.1.11" +version = "0.1.12" dependencies = [ "built", "maple_cli", diff --git a/Cargo.toml b/Cargo.toml index 611c3ebef..957767b6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "maple" build = "build.rs" edition = "2018" -version = "0.1.11" +version = "0.1.12" license = "MIT" publish = false include = ["/Cargo.toml", "src/*.rs"] diff --git a/install.ps1 b/install.ps1 index 71e87c189..bdfc68757 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ #!/usr/bin/env pwsh -$version = 'v0.11' +$version = 'v0.12' $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 1e75169a0..2cb7034ac 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ set -u -version=v0.11 +version=v0.12 APP=maple diff --git a/plugin/clap.vim b/plugin/clap.vim index 2e3ff469f..1193cac01 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.11 +" Version: 0.12 " License: MIT if exists('g:loaded_clap') diff --git a/update_release_note.sh b/update_release_note.sh index ccb4aef56..347ac86ea 100755 --- a/update_release_note.sh +++ b/update_release_note.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -new_tag=v0.11 +new_tag=v0.12 # 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")