diff --git a/Cargo.toml b/Cargo.toml index 2419ee67f..8dff4a999 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy" -version = "0.23.0" +version = "0.24.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] @@ -57,13 +57,13 @@ measure_time = "0.9.0" arc-swap = "1.5.0" bon = "3.3.1" -columnar = { version = "0.4", path = "./columnar", package = "tantivy-columnar" } -sstable = { version = "0.4", path = "./sstable", package = "tantivy-sstable", optional = true } -stacker = { version = "0.4", path = "./stacker", package = "tantivy-stacker" } -query-grammar = { version = "0.23.0", path = "./query-grammar", package = "tantivy-query-grammar" } -tantivy-bitpacker = { version = "0.7", path = "./bitpacker" } -common = { version = "0.8", path = "./common/", package = "tantivy-common" } -tokenizer-api = { version = "0.4", path = "./tokenizer-api", package = "tantivy-tokenizer-api" } +columnar = { version = "0.5", path = "./columnar", package = "tantivy-columnar" } +sstable = { version = "0.5", path = "./sstable", package = "tantivy-sstable", optional = true } +stacker = { version = "0.5", path = "./stacker", package = "tantivy-stacker" } +query-grammar = { version = "0.24.0", path = "./query-grammar", package = "tantivy-query-grammar" } +tantivy-bitpacker = { version = "0.8", path = "./bitpacker" } +common = { version = "0.9", path = "./common/", package = "tantivy-common" } +tokenizer-api = { version = "0.5", path = "./tokenizer-api", package = "tantivy-tokenizer-api" } sketches-ddsketch = { version = "0.3.0", features = ["use_serde"] } hyperloglogplus = { version = "0.4.1", features = ["const-loop"] } futures-util = { version = "0.3.28", optional = true } diff --git a/bitpacker/Cargo.toml b/bitpacker/Cargo.toml index 40a1c8762..eded992f7 100644 --- a/bitpacker/Cargo.toml +++ b/bitpacker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-bitpacker" -version = "0.7.0" +version = "0.8.0" edition = "2021" authors = ["Paul Masurel "] license = "MIT" diff --git a/columnar/Cargo.toml b/columnar/Cargo.toml index ef85314d7..5777d2fe9 100644 --- a/columnar/Cargo.toml +++ b/columnar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-columnar" -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "MIT" homepage = "https://github.com/quickwit-oss/tantivy" @@ -12,10 +12,10 @@ categories = ["database-implementations", "data-structures", "compression"] itertools = "0.14.0" fastdivide = "0.4.0" -stacker = { version= "0.4", path = "../stacker", package="tantivy-stacker"} -sstable = { version= "0.4", path = "../sstable", package = "tantivy-sstable" } -common = { version= "0.8", path = "../common", package = "tantivy-common" } -tantivy-bitpacker = { version= "0.7", path = "../bitpacker/" } +stacker = { version= "0.5", path = "../stacker", package="tantivy-stacker"} +sstable = { version= "0.5", path = "../sstable", package = "tantivy-sstable" } +common = { version= "0.9", path = "../common", package = "tantivy-common" } +tantivy-bitpacker = { version= "0.8", path = "../bitpacker/" } serde = "1.0.152" downcast-rs = "2.0.1" diff --git a/common/Cargo.toml b/common/Cargo.toml index 71bb9ee62..1bd32065c 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-common" -version = "0.8.0" +version = "0.9.0" authors = ["Paul Masurel ", "Pascal Seitz "] license = "MIT" edition = "2021" @@ -13,7 +13,7 @@ repository = "https://github.com/quickwit-oss/tantivy" [dependencies] byteorder = "1.4.3" -ownedbytes = { version= "0.8", path="../ownedbytes" } +ownedbytes = { version= "0.9", 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 26944b079..733b40d99 100644 --- a/ownedbytes/Cargo.toml +++ b/ownedbytes/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Paul Masurel ", "Pascal Seitz "] name = "ownedbytes" -version = "0.8.0" +version = "0.9.0" edition = "2021" description = "Expose data as static slice" license = "MIT" diff --git a/query-grammar/Cargo.toml b/query-grammar/Cargo.toml index d894da544..db5bac574 100644 --- a/query-grammar/Cargo.toml +++ b/query-grammar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-query-grammar" -version = "0.23.0" +version = "0.24.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] diff --git a/sstable/Cargo.toml b/sstable/Cargo.toml index d2d9100d9..490e01ebb 100644 --- a/sstable/Cargo.toml +++ b/sstable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-sstable" -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "MIT" homepage = "https://github.com/quickwit-oss/tantivy" @@ -10,10 +10,10 @@ categories = ["database-implementations", "data-structures", "compression"] description = "sstables for tantivy" [dependencies] -common = {version= "0.8", path="../common", package="tantivy-common"} +common = {version= "0.9", path="../common", package="tantivy-common"} futures-util = "0.3.30" itertools = "0.14.0" -tantivy-bitpacker = { version= "0.7", path="../bitpacker" } +tantivy-bitpacker = { version= "0.8", 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 278e8b181..b4ad3c3a6 100644 --- a/stacker/Cargo.toml +++ b/stacker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-stacker" -version = "0.4.0" +version = "0.5.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.8", path = "../common/", package = "tantivy-common" } +common = { version = "0.9", 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 035d3f171..4fda8cacf 100644 --- a/tokenizer-api/Cargo.toml +++ b/tokenizer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-tokenizer-api" -version = "0.4.0" +version = "0.5.0" license = "MIT" edition = "2021" description = "Tokenizer API of tantivy"