From 36de06e613c71d35e69f67382f4076f088a81b31 Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Sun, 16 Sep 2018 13:49:54 +0900 Subject: [PATCH] Release 0.7.0 --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd47075..f7f82a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1116,7 +1116,7 @@ dependencies = [ [[package]] name = "tantivy" -version = "0.7.0-dev" +version = "0.7.0" dependencies = [ "atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1159,7 +1159,7 @@ dependencies = [ [[package]] name = "tantivy-cli" -version = "0.7.0-dev" +version = "0.7.0" dependencies = [ "ansi_term 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "bincode 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1176,7 +1176,7 @@ dependencies = [ "serde_derive 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", "staticfile 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tantivy 0.7.0-dev", + "tantivy 0.7.0", "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", "urlencoded 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index c1e84b3..cc4da1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-cli" -version = "0.7.0-dev" +version = "0.7.0" authors = ["Paul Masurel "] description = """Command line interface for Tantivy, a search engine library.""" @@ -30,7 +30,7 @@ byteorder = "0.5" log = "0.3" futures = "0.1" env_logger = "0.3" -tantivy = {path="../tantivy"} +tantivy = "0.7" [[bin]] name = "tantivy" @@ -39,6 +39,6 @@ path = "src/main.rs" [profile.release] opt-level = 3 -debug = false +debug = true debug-assertions = false lto = true