Skip to content

Commit

Permalink
v0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
liuchengxu committed Apr 12, 2020
1 parent 3913e1e commit 5eee605
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.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.
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.11"
version = "0.1.12"
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.11'
$version = 'v0.12'
$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.11
version=v0.12

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.11
" Version: 0.12
" License: MIT

if exists('g:loaded_clap')
Expand Down
2 changes: 1 addition & 1 deletion update_release_note.sh
Original file line number Diff line number Diff line change
@@ -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")
Expand Down

0 comments on commit 5eee605

Please sign in to comment.