From afa27afe7dcb05e1ea648604ceebb19a2e64ef45 Mon Sep 17 00:00:00 2001 From: Pascal Seitz Date: Fri, 2 Dec 2022 16:31:30 +0800 Subject: [PATCH 1/4] group workspace deps --- Cargo.toml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0c340ceca1..55b7371dbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,11 +36,6 @@ fs2 = { version = "0.4.3", optional = true } levenshtein_automata = "0.2.1" uuid = { version = "1.0.0", features = ["v4", "serde"] } crossbeam-channel = "0.5.4" -tantivy-query-grammar = { version="0.18.0", path="./query-grammar" } -tantivy-bitpacker = { version="0.2", path="./bitpacker" } -common = { version = "0.3", path = "./common/", package = "tantivy-common" } -fastfield_codecs = { version="0.2", path="./fastfield_codecs", default-features = false } -ownedbytes = { version="0.3", path="./ownedbytes" } stable_deref_trait = "1.2.0" rust-stemmers = "1.2.0" downcast-rs = "1.2.0" @@ -62,6 +57,12 @@ ciborium = { version = "0.2", optional = true} async-trait = "0.1.53" arc-swap = "1.5.0" +tantivy-query-grammar = { version="0.18.0", path="./query-grammar" } +tantivy-bitpacker = { version="0.2", path="./bitpacker" } +common = { version="0.3", path = "./common/", package = "tantivy-common" } +fastfield_codecs = { version="0.2", path="./fastfield_codecs", default-features = false } +ownedbytes = { version="0.3", path="./ownedbytes" } + [target.'cfg(windows)'.dependencies] winapi = "0.3.9" From 725f1ecb80b6c98a0b918a3f80fda790030d5ebd Mon Sep 17 00:00:00 2001 From: Pascal Seitz Date: Fri, 2 Dec 2022 16:42:00 +0800 Subject: [PATCH 2/4] update cargo.toml --- bitpacker/Cargo.toml | 2 ++ common/Cargo.toml | 4 ++++ fastfield_codecs/Cargo.toml | 3 +++ ownedbytes/Cargo.toml | 4 ++++ 4 files changed, 13 insertions(+) diff --git a/bitpacker/Cargo.toml b/bitpacker/Cargo.toml index 48c1b8a1c0..194f532983 100644 --- a/bitpacker/Cargo.toml +++ b/bitpacker/Cargo.toml @@ -8,6 +8,8 @@ categories = [] description = """Tantivy-sub crate: bitpacking""" repository = "https://github.com/quickwit-oss/tantivy" keywords = [] +documentation = "https://docs.rs/tantivy-bitpacker/latest/tantivy_bitpacker" +homepage = "https://github.com/quickwit-oss/tantivy" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/common/Cargo.toml b/common/Cargo.toml index f7085d9c13..5538d4e5b5 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -5,6 +5,10 @@ authors = ["Paul Masurel ", "Pascal Seitz license = "MIT" edition = "2021" description = "common traits and utility functions used by multiple tantivy subcrates" +documentation = "https://docs.rs/tantivy_common/" +homepage = "https://github.com/quickwit-oss/tantivy" +repository = "https://github.com/quickwit-oss/tantivy" + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/fastfield_codecs/Cargo.toml b/fastfield_codecs/Cargo.toml index a53a8ceeb5..bb9fe40573 100644 --- a/fastfield_codecs/Cargo.toml +++ b/fastfield_codecs/Cargo.toml @@ -5,6 +5,9 @@ authors = ["Pascal Seitz "] license = "MIT" edition = "2021" description = "Fast field codecs used by tantivy" +documentation = "https://docs.rs/fastfield_codecs/" +homepage = "https://github.com/quickwit-oss/tantivy" +repository = "https://github.com/quickwit-oss/tantivy" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/ownedbytes/Cargo.toml b/ownedbytes/Cargo.toml index b06db9f930..a1834ce776 100644 --- a/ownedbytes/Cargo.toml +++ b/ownedbytes/Cargo.toml @@ -5,6 +5,10 @@ version = "0.3.0" edition = "2021" description = "Expose data as static slice" license = "MIT" +documentation = "https://docs.rs/ownedbytes/" +homepage = "https://github.com/quickwit-oss/tantivy" +repository = "https://github.com/quickwit-oss/tantivy" + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] From 3e8852c6066933f8cfe6d076d5f6b51a3b428329 Mon Sep 17 00:00:00 2001 From: Pascal Seitz Date: Fri, 2 Dec 2022 16:44:34 +0800 Subject: [PATCH 3/4] revert tant version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 55b7371dbc..1516a1a526 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy" -version = "0.19.0-dev" +version = "0.18.1" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] From 11b01e41411d51589de5fb8038a799d37406d108 Mon Sep 17 00:00:00 2001 From: Pascal Seitz Date: Fri, 2 Dec 2022 16:45:18 +0800 Subject: [PATCH 4/4] chore: Release --- Cargo.toml | 12 ++++++------ bitpacker/Cargo.toml | 2 +- common/Cargo.toml | 4 ++-- fastfield_codecs/Cargo.toml | 8 ++++---- ownedbytes/Cargo.toml | 2 +- query-grammar/Cargo.toml | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1516a1a526..77fede6348 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy" -version = "0.18.1" +version = "0.19.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] @@ -57,11 +57,11 @@ ciborium = { version = "0.2", optional = true} async-trait = "0.1.53" arc-swap = "1.5.0" -tantivy-query-grammar = { version="0.18.0", path="./query-grammar" } -tantivy-bitpacker = { version="0.2", path="./bitpacker" } -common = { version="0.3", path = "./common/", package = "tantivy-common" } -fastfield_codecs = { version="0.2", path="./fastfield_codecs", default-features = false } -ownedbytes = { version="0.3", path="./ownedbytes" } +tantivy-query-grammar = { version= "0.19.0", path="./query-grammar" } +tantivy-bitpacker = { version= "0.3", path="./bitpacker" } +common = { version= "0.4", path = "./common/", package = "tantivy-common" } +fastfield_codecs = { version= "0.3", path="./fastfield_codecs", default-features = false } +ownedbytes = { version= "0.4", path="./ownedbytes" } [target.'cfg(windows)'.dependencies] winapi = "0.3.9" diff --git a/bitpacker/Cargo.toml b/bitpacker/Cargo.toml index 194f532983..8a3db03fd2 100644 --- a/bitpacker/Cargo.toml +++ b/bitpacker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-bitpacker" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Paul Masurel "] license = "MIT" diff --git a/common/Cargo.toml b/common/Cargo.toml index 5538d4e5b5..e579a9aab5 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-common" -version = "0.3.0" +version = "0.4.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.3", path="../ownedbytes" } +ownedbytes = { version= "0.4", path="../ownedbytes" } [dev-dependencies] proptest = "1.0.0" diff --git a/fastfield_codecs/Cargo.toml b/fastfield_codecs/Cargo.toml index bb9fe40573..a56d0f9835 100644 --- a/fastfield_codecs/Cargo.toml +++ b/fastfield_codecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastfield_codecs" -version = "0.2.0" +version = "0.3.0" authors = ["Pascal Seitz "] license = "MIT" edition = "2021" @@ -12,9 +12,9 @@ repository = "https://github.com/quickwit-oss/tantivy" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -common = { version = "0.3", path = "../common/", package = "tantivy-common" } -tantivy-bitpacker = { version="0.2", path = "../bitpacker/" } -ownedbytes = { version = "0.3.0", path = "../ownedbytes" } +common = { version = "0.4", path = "../common/", package = "tantivy-common" } +tantivy-bitpacker = { version= "0.3", path = "../bitpacker/" } +ownedbytes = { version = "0.4.0", path = "../ownedbytes" } prettytable-rs = {version="0.9.0", optional= true} rand = {version="0.8.3", optional= true} fastdivide = "0.4" diff --git a/ownedbytes/Cargo.toml b/ownedbytes/Cargo.toml index a1834ce776..4bd3206efd 100644 --- a/ownedbytes/Cargo.toml +++ b/ownedbytes/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Paul Masurel ", "Pascal Seitz "] name = "ownedbytes" -version = "0.3.0" +version = "0.4.0" edition = "2021" description = "Expose data as static slice" license = "MIT" diff --git a/query-grammar/Cargo.toml b/query-grammar/Cargo.toml index 02c967bbcf..91b1c4ad0f 100644 --- a/query-grammar/Cargo.toml +++ b/query-grammar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-query-grammar" -version = "0.18.0" +version = "0.19.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"]