Skip to content

Commit 6e8d5c4

Browse files
committed
Version 2.16.0
1 parent ec4aa15 commit 6e8d5c4

File tree

11 files changed

+13
-12
lines changed

11 files changed

+13
-12
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ AutoCorrect 是一个基于 Rust 编写的工具,用于「自动纠正」或
4040
- Allows using `.gitignore` or `.autocorrectignore` to ignore files that you want to ignore.
4141
- Support more than [28 file types](https://github.com/huacnlee/autocorrect/tree/main/autocorrect/grammar) (Markdown, JSON, YAML, JavaScript, HTML ...), use AST parser to only check for strings, and comments.
4242
- LSP server: [autocorrect-lsp](https://github.com/huacnlee/autocorrect/tree/main/autocorrect-lsp)
43+
- Based on [typos](https://github.com/crate-ci/typos) for spellcheck (LSP only).
4344
- Cross-platform for Linux, macOS, Windows, and WebAssembly, and as Native SDK for programming (Node.js, JavaScript Browser, Ruby, Python, Java).
4445

4546
## 典型应用场景

autocorrect-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "autocorrect-cli"
88
readme = "../README.md"
99
repository = "https://github.com/huacnlee/autocorrect"
10-
version = "2.15.0"
10+
version = "2.16.0"
1111

1212
[[bin]]
1313
name = "autocorrect"

autocorrect-java/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "autocorrect-java"
4-
version = "2.15.0"
4+
version = "2.16.0"
55

66
[dependencies]
77
autocorrect = {path = "../autocorrect"}

autocorrect-java/javasrc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.huacnlee</groupId>
88
<artifactId>autocorrect-java</artifactId>
9-
<version>2.15.0</version>
9+
<version>2.16.0</version>
1010
<name>autocorrect-java</name>
1111
<description>A linter and formatter to help you to improve copywriting, correct spaces, words, punctuations between
1212
CJK (Chinese, Japanese, Korean).

autocorrect-node/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "autocorrect-node"
4-
version = "2.15.0"
4+
version = "2.16.0"
55

66
[lib]
77
crate-type = ["cdylib"]
@@ -10,11 +10,11 @@ crate-type = ["cdylib"]
1010
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
1111
autocorrect = { path = "../autocorrect", version = ">= 1.0.0" }
1212
autocorrect-cli = { path = "../autocorrect-cli", version = ">= 2.6", default-features = false }
13-
napi = { version = "2.15.0", default-features = false, features = [
13+
napi = { version = "2.16.0", default-features = false, features = [
1414
"napi4",
1515
"async",
1616
] }
17-
napi-derive = "2.15.0"
17+
napi-derive = "2.16.0"
1818

1919
[build-dependencies]
2020
napi-build = "2.1.0"

autocorrect-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "autocorrect-node",
3-
"version": "2.15.0",
3+
"version": "2.16.0",
44
"main": "index.js",
55
"bin": {
66
"autocorrect": "./cli.js"

autocorrect-py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT"
66
name = "autocorrect-py"
77
readme = "README.md"
88
repository = "https://github.com/huacnlee/autocorrect"
9-
version = "2.15.0"
9+
version = "2.16.0"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212
[lib]

autocorrect-rb/autocorrect-rb.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $:.push File.expand_path("lib", __dir__)
22

33
Gem::Specification.new do |s|
44
s.name = "autocorrect-rb"
5-
s.version = "2.15.0"
5+
s.version = "2.16.0"
66
s.platform = Gem::Platform::RUBY
77
s.authors = ["Jason Lee"]
88
s.email = ["huacnlee@gmail.com"]

autocorrect-rb/ext/autocorrect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "autocorrect-rb"
4-
version = "2.15.0"
4+
version = "2.16.0"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77
[lib]

autocorrect-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "autocorrect-wasm"
4-
version = "2.15.0"
4+
version = "2.16.0"
55

66
[lib]
77
crate-type = ["cdylib", "rlib"]

0 commit comments

Comments
 (0)