From 83addce49642778c1662b4e7b414cf1e78c37586 Mon Sep 17 00:00:00 2001 From: Koichi Akabe Date: Tue, 12 Apr 2022 10:27:55 +0900 Subject: [PATCH] Release v0.4.0 (#30) * Release v0.4.0 * Update Cargo.toml --- convert_kytea_model/Cargo.toml | 2 +- evaluate/Cargo.toml | 2 +- manipulate_model/Cargo.toml | 2 +- predict/Cargo.toml | 2 +- train/Cargo.toml | 2 +- vaporetto/Cargo.toml | 4 ++-- vaporetto_rules/Cargo.toml | 8 ++++---- vaporetto_tantivy/Cargo.toml | 6 +++--- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/convert_kytea_model/Cargo.toml b/convert_kytea_model/Cargo.toml index 2ee1ee38..c1e8c014 100644 --- a/convert_kytea_model/Cargo.toml +++ b/convert_kytea_model/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "convert_kytea_model" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] clap = { version = "3.1", features = ["derive"] } # MIT or Apache-2.0 diff --git a/evaluate/Cargo.toml b/evaluate/Cargo.toml index b8ecc8b3..75b8654a 100644 --- a/evaluate/Cargo.toml +++ b/evaluate/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "evaluate" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] clap = { version = "3.1", features = ["derive"] } # MIT or Apache-2.0 diff --git a/manipulate_model/Cargo.toml b/manipulate_model/Cargo.toml index bffd0c01..9954cf7b 100644 --- a/manipulate_model/Cargo.toml +++ b/manipulate_model/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "manipulate_model" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] clap = { version = "3.1", features = ["derive"] } # MIT or Apache-2.0 diff --git a/predict/Cargo.toml b/predict/Cargo.toml index efbf9758..6d5bbe61 100644 --- a/predict/Cargo.toml +++ b/predict/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "predict" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] clap = { version = "3.1.0", features = ["derive"] } # MIT or Apache-2.0 diff --git a/train/Cargo.toml b/train/Cargo.toml index c2824d2d..c53f5ab9 100644 --- a/train/Cargo.toml +++ b/train/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "train" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] clap = { version = "3.1.0", features = ["derive"] } # MIT or Apache-2.0 diff --git a/vaporetto/Cargo.toml b/vaporetto/Cargo.toml index 96f825f7..114d5772 100644 --- a/vaporetto/Cargo.toml +++ b/vaporetto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaporetto" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = ["Koichi Akabe "] description = "Vaporetto: a pointwise prediction based tokenizer" @@ -9,7 +9,7 @@ homepage = "https://github.com/daac-tools/vaporetto" repository = "https://github.com/daac-tools/vaporetto" readme = "README.md" keywords = ["japanese", "analyzer", "tokenizer", "morphological"] -categories = ["text-processing"] +categories = ["text-processing", "no-std"] [dependencies] bincode = { version = "2.0.0-rc.1", default-features = false, features = ["alloc", "derive"] } # MIT diff --git a/vaporetto_rules/Cargo.toml b/vaporetto_rules/Cargo.toml index be6dedde..b2520189 100644 --- a/vaporetto_rules/Cargo.toml +++ b/vaporetto_rules/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "vaporetto_rules" -version = "0.3.0" -edition = "2018" +version = "0.4.0" +edition = "2021" authors = ["Koichi Akabe "] description = "Rule-base filters for Vaporetto" license = "MIT OR Apache-2.0" @@ -9,8 +9,8 @@ homepage = "https://github.com/daac-tools/vaporetto" repository = "https://github.com/daac-tools/vaporetto" readme = "README.md" keywords = ["japanese", "analyzer", "tokenizer", "morphological"] -categories = ["text-processing"] +categories = ["text-processing", "no-std"] [dependencies] unicode-segmentation = "1.9.0" # MIT or Apache-2.0 -vaporetto = { path = "../vaporetto", version = "0.3.0", default-features = false } # MIT or Apache-2.0 +vaporetto = { path = "../vaporetto", version = "0.4.0", default-features = false } # MIT or Apache-2.0 diff --git a/vaporetto_tantivy/Cargo.toml b/vaporetto_tantivy/Cargo.toml index 7fdb02e3..d70d0fa6 100644 --- a/vaporetto_tantivy/Cargo.toml +++ b/vaporetto_tantivy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaporetto_tantivy" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = ["Koichi Akabe "] description = "Vaporetto Tokenizer for Tantivy" @@ -12,8 +12,8 @@ keywords = ["japanese", "tokenizer", "tantivy"] categories = ["text-processing"] [dependencies] -vaporetto = { path = "../vaporetto", version = "0.3.0" } # MIT or Apache-2.0 -vaporetto_rules = { path = "../vaporetto_rules", version = "0.3.0" } # MIT or Apache-2.0 +vaporetto = { path = "../vaporetto", version = "0.4.0" } # MIT or Apache-2.0 +vaporetto_rules = { path = "../vaporetto_rules", version = "0.4.0" } # MIT or Apache-2.0 tantivy = "0.17" # MIT [dev-dependencies]