From 2e255c4bef8a0fcd025dcc7400dd444ba31094b3 Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Wed, 9 Mar 2022 09:56:16 +0900 Subject: [PATCH] Preparing for release --- Cargo.toml | 4 ++-- common/Cargo.toml | 2 +- fastfield_codecs/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2c9bb068d..66cb907bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy" -version = "0.17.0-dev" +version = "0.17.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] @@ -35,7 +35,7 @@ crossbeam = "0.8.1" futures = { version = "0.3.15", features = ["thread-pool"] } tantivy-query-grammar = { version="0.15.0", path="./query-grammar" } tantivy-bitpacker = { version="0.1", path="./bitpacker" } -common = { version = "0.1", path = "./common/", package = "tantivy-common" } +common = { version = "0.2", path = "./common/", package = "tantivy-common" } fastfield_codecs = { version="0.1", path="./fastfield_codecs", default-features = false } ownedbytes = { version="0.2", path="./ownedbytes" } stable_deref_trait = "1.2" diff --git a/common/Cargo.toml b/common/Cargo.toml index 708629a0e..e27d5246f 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-common" -version = "0.1.0" +version = "0.2.0" authors = ["Paul Masurel ", "Pascal Seitz "] license = "MIT" edition = "2018" diff --git a/fastfield_codecs/Cargo.toml b/fastfield_codecs/Cargo.toml index 6ee206e38..a8540142d 100644 --- a/fastfield_codecs/Cargo.toml +++ b/fastfield_codecs/Cargo.toml @@ -9,7 +9,7 @@ description = "Fast field codecs used by tantivy" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -common = { version = "0.1", path = "../common/", package = "tantivy-common" } +common = { version = "0.2", path = "../common/", package = "tantivy-common" } tantivy-bitpacker = { version="0.1.1", path = "../bitpacker/" } prettytable-rs = {version="0.8.0", optional= true} rand = {version="0.8.3", optional= true}