From 15d602bf5b5f1acd2302f661431c23dfc84103f3 Mon Sep 17 00:00:00 2001 From: Liu-Cheng Xu Date: Mon, 25 May 2020 15:12:35 +0800 Subject: [PATCH] v0.17 --- 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 a1bf34ea4..df5d8917e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.lock b/Cargo.lock index 544d8b6e8..9574dc22b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -753,7 +753,7 @@ dependencies = [ [[package]] name = "maple" -version = "0.1.16" +version = "0.1.17" dependencies = [ "built", "maple_cli", diff --git a/Cargo.toml b/Cargo.toml index fffda34c2..b37cbd35a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] diff --git a/install.ps1 b/install.ps1 index 97390c91e..139e136d2 100644 --- a/install.ps1 +++ b/install.ps1 @@ -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" diff --git a/install.sh b/install.sh index a54a1a6d0..de117b5f7 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ set -u -version=v0.16 +version=v0.17 APP=maple diff --git a/plugin/clap.vim b/plugin/clap.vim index c12db7263..cbd1cc4a3 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.16 +" Version: 0.17 " License: MIT if exists('g:loaded_clap') diff --git a/scripts/update_release_note.sh b/scripts/update_release_note.sh index 303851c80..38f1ea43f 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.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")