diff --git a/Cargo.toml b/Cargo.toml index 033a8074c..3580168e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy" -version = "0.21.1" +version = "0.22.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] @@ -52,13 +52,13 @@ itertools = "0.12.0" measure_time = "0.8.2" arc-swap = "1.5.0" -columnar = { version= "0.2", path="./columnar", package ="tantivy-columnar" } -sstable = { version= "0.2", path="./sstable", package ="tantivy-sstable", optional = true } -stacker = { version= "0.2", path="./stacker", package ="tantivy-stacker" } -query-grammar = { version= "0.21.0", path="./query-grammar", package = "tantivy-query-grammar" } -tantivy-bitpacker = { version= "0.5", path="./bitpacker" } -common = { version= "0.6", path = "./common/", package = "tantivy-common" } -tokenizer-api = { version= "0.2", path="./tokenizer-api", package="tantivy-tokenizer-api" } +columnar = { version= "0.3", path="./columnar", package ="tantivy-columnar" } +sstable = { version= "0.3", path="./sstable", package ="tantivy-sstable", optional = true } +stacker = { version= "0.3", path="./stacker", package ="tantivy-stacker" } +query-grammar = { version= "0.22.0", path="./query-grammar", package = "tantivy-query-grammar" } +tantivy-bitpacker = { version= "0.6", path="./bitpacker" } +common = { version= "0.7", path = "./common/", package = "tantivy-common" } +tokenizer-api = { version= "0.3", path="./tokenizer-api", package="tantivy-tokenizer-api" } sketches-ddsketch = { version = "0.2.1", features = ["use_serde"] } futures-util = { version = "0.3.28", optional = true } fnv = "1.0.7" diff --git a/bitpacker/Cargo.toml b/bitpacker/Cargo.toml index b1e7db021..104f5f805 100644 --- a/bitpacker/Cargo.toml +++ b/bitpacker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-bitpacker" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = ["Paul Masurel "] license = "MIT" diff --git a/columnar/Cargo.toml b/columnar/Cargo.toml index 259965416..36a5a55d5 100644 --- a/columnar/Cargo.toml +++ b/columnar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-columnar" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "MIT" homepage = "https://github.com/quickwit-oss/tantivy" @@ -12,10 +12,10 @@ categories = ["database-implementations", "data-structures", "compression"] itertools = "0.12.0" fastdivide = "0.4.0" -stacker = { version= "0.2", path = "../stacker", package="tantivy-stacker"} -sstable = { version= "0.2", path = "../sstable", package = "tantivy-sstable" } -common = { version= "0.6", path = "../common", package = "tantivy-common" } -tantivy-bitpacker = { version= "0.5", path = "../bitpacker/" } +stacker = { version= "0.3", path = "../stacker", package="tantivy-stacker"} +sstable = { version= "0.3", path = "../sstable", package = "tantivy-sstable" } +common = { version= "0.7", path = "../common", package = "tantivy-common" } +tantivy-bitpacker = { version= "0.6", path = "../bitpacker/" } serde = "1.0.152" downcast-rs = "1.2.0" diff --git a/common/Cargo.toml b/common/Cargo.toml index 91765b8f7..a04bfcdb3 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-common" -version = "0.6.0" +version = "0.7.0" authors = ["Paul Masurel ", "Pascal Seitz "] license = "MIT" edition = "2021" @@ -14,7 +14,7 @@ repository = "https://github.com/quickwit-oss/tantivy" [dependencies] byteorder = "1.4.3" -ownedbytes = { version= "0.6", path="../ownedbytes" } +ownedbytes = { version= "0.7", path="../ownedbytes" } async-trait = "0.1" time = { version = "0.3.10", features = ["serde-well-known"] } serde = { version = "1.0.136", features = ["derive"] } diff --git a/ownedbytes/Cargo.toml b/ownedbytes/Cargo.toml index 8f990b3d3..2391dbef6 100644 --- a/ownedbytes/Cargo.toml +++ b/ownedbytes/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Paul Masurel ", "Pascal Seitz "] name = "ownedbytes" -version = "0.6.0" +version = "0.7.0" edition = "2021" description = "Expose data as static slice" license = "MIT" diff --git a/query-grammar/Cargo.toml b/query-grammar/Cargo.toml index 26be4e72a..b9fecb25a 100644 --- a/query-grammar/Cargo.toml +++ b/query-grammar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-query-grammar" -version = "0.21.0" +version = "0.22.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] diff --git a/sstable/Cargo.toml b/sstable/Cargo.toml index 7cce07696..91d629229 100644 --- a/sstable/Cargo.toml +++ b/sstable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-sstable" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "MIT" homepage = "https://github.com/quickwit-oss/tantivy" @@ -10,8 +10,8 @@ categories = ["database-implementations", "data-structures", "compression"] description = "sstables for tantivy" [dependencies] -common = {version= "0.6", path="../common", package="tantivy-common"} -tantivy-bitpacker = { version= "0.5", path="../bitpacker" } +common = {version= "0.7", path="../common", package="tantivy-common"} +tantivy-bitpacker = { version= "0.6", path="../bitpacker" } tantivy-fst = "0.5" # experimental gives us access to Decompressor::upper_bound zstd = { version = "0.13", features = ["experimental"] } diff --git a/stacker/Cargo.toml b/stacker/Cargo.toml index 80062ac41..1702940cd 100644 --- a/stacker/Cargo.toml +++ b/stacker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-stacker" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "MIT" homepage = "https://github.com/quickwit-oss/tantivy" @@ -9,7 +9,7 @@ description = "term hashmap used for indexing" [dependencies] murmurhash32 = "0.3" -common = { version = "0.6", path = "../common/", package = "tantivy-common" } +common = { version = "0.7", path = "../common/", package = "tantivy-common" } ahash = { version = "0.8.11", default-features = false, optional = true } rand_distr = "0.4.3" diff --git a/tokenizer-api/Cargo.toml b/tokenizer-api/Cargo.toml index e8e47589f..0ebcbb89a 100644 --- a/tokenizer-api/Cargo.toml +++ b/tokenizer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-tokenizer-api" -version = "0.2.0" +version = "0.3.0" license = "MIT" edition = "2021" description = "Tokenizer API of tantivy"