Skip to content

Commit

Permalink
v0.52
Browse files Browse the repository at this point in the history
  • Loading branch information
liuchengxu committed Feb 29, 2024
1 parent 070dcc0 commit 56cdb1d
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 30 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.52] 2024-2-29

### Plugins

- Change the naming convention of plugin action from `plugin/foo-action` to `plugin.fooAction` for the compatibility with tools like coc.nvim.
Expand Down
50 changes: 26 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace.package]
authors = ["Liu-Cheng Xu <xuliuchengxlc@gmail.com>"]
version = "0.1.0"
version = "0.1.52"
edition = "2021"
homepage = "https://github.com/liuchengxu/vim-clap"
repository = "https://github.com/liuchengxu/vim-clap.git"
Expand Down Expand Up @@ -46,7 +46,7 @@ async-trait = "0.1"
base64 = "0.13"
bytecount = { version = "0.6", features = ["runtime-dispatch-simd"] }
cargo_metadata = "0.18.0"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] }
chrono-humanize = "0.2.3"
clap = { version = "4.2", features = ["derive"] }
colors-transform = "0.2.11"
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ config-md:
clippy:
cargo clippy --workspace --all-features --all-targets -- -D warnings

release:
cargo xtask release

fmt:
cargo +nightly fmt --all

.PHONY: all maple python-dynamic-module config-md clippy
.PHONY: all maple python-dynamic-module config-md clippy release fmt
2 changes: 1 addition & 1 deletion crates/maple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ upgrade = { workspace = true }

[build-dependencies]
built = { package = "built", version = "0.6", features = ["git2"] }
chrono = { workspace = true, default-features = false, features = ["clock"] }
chrono = { workspace = true }
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.51'
$version = 'v0.52'
$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 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.51
" Version: 0.52
" License: MIT

if exists('g:loaded_clap')
Expand Down

0 comments on commit 56cdb1d

Please sign in to comment.