From b9ca65dbcc89dfb2702fb2ab0e98c7119f4e6bbf Mon Sep 17 00:00:00 2001 From: Liu-Cheng Xu Date: Fri, 1 Jan 2021 22:14:59 +0800 Subject: [PATCH] v0.22 --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- install.ps1 | 2 +- install.sh | 2 +- plugin/clap.vim | 2 +- scripts/update_release_note.sh | 2 +- 7 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb1bede08..f3f1b867c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [unreleased] + +## [0.22] 2021-01-01 ### Added - Add `g:clap_enable_background_shadow` to render a transparent shadow (neovim-only) #546, #550 diff --git a/Cargo.lock b/Cargo.lock index 1e8098fec..566bc249c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -759,7 +759,7 @@ dependencies = [ [[package]] name = "maple" -version = "0.1.21" +version = "0.1.22" dependencies = [ "built", "maple_cli", diff --git a/Cargo.toml b/Cargo.toml index 98e5af6f0..370dc035b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "maple" build = "build.rs" edition = "2018" -version = "0.1.21" +version = "0.1.22" license = "MIT" publish = false include = ["/Cargo.toml", "src/*.rs"] diff --git a/install.ps1 b/install.ps1 index 65ae8e949..24348ca22 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ #!/usr/bin/env pwsh -$version = 'v0.21' +$version = 'v0.22' $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 ad3fde1e6..5ae3afd04 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ set -u -version=v0.21 +version=v0.22 APP=maple diff --git a/plugin/clap.vim b/plugin/clap.vim index 0c903625a..a1e76738d 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.21 +" Version: 0.22 " License: MIT if exists('g:loaded_clap') diff --git a/scripts/update_release_note.sh b/scripts/update_release_note.sh index 78d4ddfe5..413f3c174 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.21 +new_tag=v0.22 # 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")