Skip to content

Commit 6365cfd

Browse files
authored
Update self_update to fix build error on Rust 1.88 (#267)
Close #265 #266
1 parent f2ebb4c commit 6365cfd

File tree

18 files changed

+72
-41
lines changed

18 files changed

+72
-41
lines changed

autocorrect-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.13.3"
10+
version = "2.14.0"
1111

1212
[[bin]]
1313
name = "autocorrect"
@@ -42,7 +42,7 @@ tokio = { version = "1", features = [
4242
# Self Update
4343
# - archive-tar + compression-flate2 - for tar.gz
4444
# - rustls - for use native rustls without system openssl dependency
45-
self_update = { version = "0.30.0", features = [
45+
self_update = { version = "0.42.0", features = [
4646
"archive-tar",
4747
"compression-flate2",
4848
"rustls",

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.13.3"
4+
version = "2.14.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.13.3</version>
9+
<version>2.14.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "autocorrect-node"
4-
version = "2.13.3"
4+
version = "2.14.0"
55

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

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.13.3",
3+
"version": "2.14.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.13.3"
9+
version = "2.14.0"
1010

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

autocorrect-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["maturin>=0.13,<0.14"]
2+
requires = ["maturin>=1.9.0,<2.0.0"]
33
build-backend = "maturin"

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.13.3"
5+
s.version = "2.14.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.13.3"
4+
version = "2.14.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.13.3"
4+
version = "2.14.0"
55

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

0 commit comments

Comments
 (0)