Skip to content

Commit 56cdb1d

Browse files
committed
v0.52
1 parent 070dcc0 commit 56cdb1d

File tree

7 files changed

+37
-30
lines changed

7 files changed

+37
-30
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [unreleased]
44

5+
## [0.52] 2024-2-29
6+
57
### Plugins
68

79
- Change the naming convention of plugin action from `plugin/foo-action` to `plugin.fooAction` for the compatibility with tools like coc.nvim.

Cargo.lock

Lines changed: 26 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace.package]
22
authors = ["Liu-Cheng Xu <[email protected]>"]
3-
version = "0.1.0"
3+
version = "0.1.52"
44
edition = "2021"
55
homepage = "https://github.com/liuchengxu/vim-clap"
66
repository = "https://github.com/liuchengxu/vim-clap.git"
@@ -46,7 +46,7 @@ async-trait = "0.1"
4646
base64 = "0.13"
4747
bytecount = { version = "0.6", features = ["runtime-dispatch-simd"] }
4848
cargo_metadata = "0.18.0"
49-
chrono = { version = "0.4", default-features = false, features = ["serde"] }
49+
chrono = { version = "0.4", features = ["serde"] }
5050
chrono-humanize = "0.2.3"
5151
clap = { version = "4.2", features = ["derive"] }
5252
colors-transform = "0.2.11"

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ config-md:
1414
clippy:
1515
cargo clippy --workspace --all-features --all-targets -- -D warnings
1616

17+
release:
18+
cargo xtask release
19+
1720
fmt:
1821
cargo +nightly fmt --all
1922

20-
.PHONY: all maple python-dynamic-module config-md clippy
23+
.PHONY: all maple python-dynamic-module config-md clippy release fmt

crates/maple/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ upgrade = { workspace = true }
1919

2020
[build-dependencies]
2121
built = { package = "built", version = "0.6", features = ["git2"] }
22-
chrono = { workspace = true, default-features = false, features = ["clock"] }
22+
chrono = { workspace = true }

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env pwsh
22

3-
$version = 'v0.51'
3+
$version = 'v0.52'
44
$APP = 'maple'
55
$url = "https://github.com/liuchengxu/vim-clap/releases/download/$version/$APP-"
66
$output = "$PSScriptRoot\bin\$APP.exe"

plugin/clap.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" vim-clap - Modern interactive filter and dispatcher
22
" Author: Liu-Cheng Xu <[email protected]>
33
" Website: https://github.com/liuchengxu/vim-clap
4-
" Version: 0.51
4+
" Version: 0.52
55
" License: MIT
66

77
if exists('g:loaded_clap')

0 commit comments

Comments
 (0)