From 8ffb8d9b0adbfd5ea97fa8ed76242b98428625a7 Mon Sep 17 00:00:00 2001 From: Koichi Akabe Date: Tue, 7 Mar 2023 17:24:33 +0900 Subject: [PATCH] Release 0.6.2 (#89) --- vaporetto/Cargo.toml | 4 ++-- vaporetto_rules/Cargo.toml | 10 +++++----- vaporetto_tantivy/Cargo.toml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/vaporetto/Cargo.toml b/vaporetto/Cargo.toml index 714eef5..816a219 100644 --- a/vaporetto/Cargo.toml +++ b/vaporetto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaporetto" -version = "0.6.1" +version = "0.6.2" edition = "2021" rust-version = "1.64" authors = ["Koichi Akabe "] @@ -15,7 +15,7 @@ categories = ["text-processing", "no-std"] [dependencies] bincode = { version = "2.0.0-rc.2", default-features = false, features = ["alloc", "derive"] } # MIT daachorse = "1.0.0" # MIT or Apache-2.0 -hashbrown = "0.13.1" # MIT or Apache-2.0 +hashbrown = "0.13.2" # MIT or Apache-2.0 liblinear = { version = "1", optional = true } # MIT diff --git a/vaporetto_rules/Cargo.toml b/vaporetto_rules/Cargo.toml index d6eb450..ce6a492 100644 --- a/vaporetto_rules/Cargo.toml +++ b/vaporetto_rules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaporetto_rules" -version = "0.6.1" +version = "0.6.2" edition = "2021" rust-version = "1.64" authors = ["Koichi Akabe "] @@ -13,9 +13,9 @@ keywords = ["japanese", "analyzer", "tokenizer", "morphological"] categories = ["text-processing", "no-std"] [dependencies] -hashbrown = "0.13.1" # MIT or Apache-2.0 -unicode-segmentation = "1.10.0" # MIT or Apache-2.0 -vaporetto = { path = "../vaporetto", version = "=0.6.1", default-features = false, features = ["alloc"] } # MIT or Apache-2.0 +hashbrown = "0.13.2" # MIT or Apache-2.0 +unicode-segmentation = "1.10.1" # MIT or Apache-2.0 +vaporetto = { path = "../vaporetto", version = "=0.6.2", default-features = false, features = ["alloc"] } # MIT or Apache-2.0 [dev-dependencies] -vaporetto = { path = "../vaporetto", version = "=0.6.1" } # MIT or Apache-2.0 +vaporetto = { path = "../vaporetto", version = "=0.6.2" } # MIT or Apache-2.0 diff --git a/vaporetto_tantivy/Cargo.toml b/vaporetto_tantivy/Cargo.toml index 54b6652..510918d 100644 --- a/vaporetto_tantivy/Cargo.toml +++ b/vaporetto_tantivy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaporetto_tantivy" -version = "0.19.0" # Match with Tantivy version number +version = "0.19.1" # Match with Tantivy version number edition = "2021" rust-version = "1.64" authors = ["Koichi Akabe "] @@ -13,8 +13,8 @@ keywords = ["japanese", "tokenizer", "tantivy"] categories = ["text-processing"] [dependencies] -vaporetto = { path = "../vaporetto", version = "=0.6.1" } # MIT or Apache-2.0 -vaporetto_rules = { path = "../vaporetto_rules", version = "=0.6.1" } # MIT or Apache-2.0 +vaporetto = { path = "../vaporetto", version = "=0.6.2" } # MIT or Apache-2.0 +vaporetto_rules = { path = "../vaporetto_rules", version = "=0.6.2" } # MIT or Apache-2.0 tantivy = "0.19" # MIT [dev-dependencies]