Skip to content

Commit

Permalink
v0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
liuchengxu committed May 25, 2020
1 parent 9bfec30 commit 15d602b
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 @@ -3,6 +3,8 @@ CHANGELOG

## [unreleased]

## [0.17] 2020-05-25

### Fixed

- Fix the `sink*` args in `selection.vim`, convert the truncated lines to the original full lines.
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.16"
version = "0.1.17"
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.16'
$version = 'v0.17'
$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.16
version=v0.17

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.16
" Version: 0.17
" 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.16
new_tag=v0.17
# 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 15d602b

Please sign in to comment.