Skip to content

Commit

Permalink
Release 0.6.2 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbkaisetsu authored Mar 7, 2023
1 parent 6afa5ed commit 8ffb8d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions vaporetto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vaporetto"
version = "0.6.1"
version = "0.6.2"
edition = "2021"
rust-version = "1.64"
authors = ["Koichi Akabe <[email protected]>"]
Expand All @@ -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

Expand Down
10 changes: 5 additions & 5 deletions vaporetto_rules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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
6 changes: 3 additions & 3 deletions vaporetto_tantivy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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]
Expand Down

0 comments on commit 8ffb8d9

Please sign in to comment.