Skip to content

Commit

Permalink
Release version 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Jan 19, 2024
1 parent 91abcd6 commit b94b9fd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ license = "MIT"
name = "rust-i18n"
readme = "README.md"
repository = "https://github.com/longbridgeapp/rust-i18n"
version = "2.3.1"
version = "2.4.0"

[dependencies]
once_cell = "1.10.0"
rust-i18n-support = {path = "./crates/support", version = "2.3.0"}
rust-i18n-macro = {path = "./crates/macro", version = "2.3.0"}
rust-i18n-support = { path = "./crates/support", version = "2.4.0" }
rust-i18n-macro = { path = "./crates/macro", version = "2.4.0" }
smallvec = "1.12.0"

[dev-dependencies]
foo = {path = "examples/foo"}
foo = { path = "examples/foo" }
criterion = "0.5"
lazy_static = "1"
serde_yaml = "0.8"
Expand Down
6 changes: 3 additions & 3 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ license = "MIT"
name = "rust-i18n-cli"
readme = "../../README.md"
repository = "https://github.com/longbridgeapp/rust-i18n"
version = "2.3.0"
version = "2.4.0"

[dependencies]
anyhow = "1"
clap = { version = "4.1.14", features = ["derive"] }
itertools = "0.11.0"
rust-i18n-support = { path = "../support", version = "2.3.0" }
rust-i18n-extract = { path = "../extract", version = "2.3.0" }
rust-i18n-support = { path = "../support", version = "2.4.0" }
rust-i18n-extract = { path = "../extract", version = "2.4.0" }
serde = { version = "1", features = ["derive"] }
toml = "0.7.4"

Expand Down
4 changes: 2 additions & 2 deletions crates/extract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MIT"
name = "rust-i18n-extract"
readme = "../../README.md"
repository = "https://github.com/longbridgeapp/rust-i18n"
version = "2.3.0"
version = "2.4.0"

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

Expand All @@ -15,7 +15,7 @@ ignore = "0.4"
proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1"
regex = "1"
rust-i18n-support = { path = "../support", version = "2.3.0" }
rust-i18n-support = { path = "../support", version = "2.4.0" }
serde = "1"
serde_json = "1"
serde_yaml = "0.8"
Expand Down
4 changes: 2 additions & 2 deletions crates/macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MIT"
name = "rust-i18n-macro"
readme = "../../README.md"
repository = "https://github.com/longbridgeapp/rust-i18n"
version = "2.3.1"
version = "2.4.0"

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

Expand All @@ -14,7 +14,7 @@ glob = "0.3"
once_cell = "1.10.0"
proc-macro2 = "1.0"
quote = "1.0.2"
rust-i18n-support = { path = "../support", version = "2.3.0" }
rust-i18n-support = { path = "../support", version = "2.4.0" }
serde = "1"
serde_json = "1"
serde_yaml = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion crates/support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MIT"
name = "rust-i18n-support"
readme = "../../README.md"
repository = "https://github.com/longbridgeapp/rust-i18n"
version = "2.3.0"
version = "2.4.0"

[dependencies]
globwalk = "0.8.1"
Expand Down

0 comments on commit b94b9fd

Please sign in to comment.