From b94b9fda470503b8e9559a1900b70bb4c4f23dd3 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Fri, 19 Jan 2024 15:36:18 +0800 Subject: [PATCH] Release version 2.4.0 --- Cargo.toml | 8 ++++---- crates/cli/Cargo.toml | 6 +++--- crates/extract/Cargo.toml | 4 ++-- crates/macro/Cargo.toml | 4 ++-- crates/support/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 59cb79d..cdc5433 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index db9588b..ebe3459 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -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" diff --git a/crates/extract/Cargo.toml b/crates/extract/Cargo.toml index 153ec6f..a9b5c78 100644 --- a/crates/extract/Cargo.toml +++ b/crates/extract/Cargo.toml @@ -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 @@ -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" diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index 843376f..cf0f523 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -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 @@ -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" diff --git a/crates/support/Cargo.toml b/crates/support/Cargo.toml index 7df8a80..d7d8d63 100644 --- a/crates/support/Cargo.toml +++ b/crates/support/Cargo.toml @@ -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"