Skip to content

Commit

Permalink
v0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
liuchengxu committed Jan 1, 2021
1 parent 33798df commit b9ca65d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.21"
version = "0.1.22"
license = "MIT"
publish = false
include = ["/Cargo.toml", "src/*.rs"]
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.21'
$version = 'v0.22'
$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.21
version=v0.22

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.21
" Version: 0.22
" 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.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")
Expand Down

0 comments on commit b9ca65d

Please sign in to comment.