From c24157f28b26c8e686ec1e38a22540769099e4d3 Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Fri, 21 Oct 2022 15:35:35 +0900 Subject: [PATCH] Bumping version format. (#1640) The docstore format has changed in a non-compatible manner. --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index feb7fa7e4d..dd699e1b11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy" -version = "0.18.1" +version = "0.19.0-dev" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] diff --git a/src/lib.rs b/src/lib.rs index 4f6a9d0d92..fe8c61491b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -311,7 +311,7 @@ pub use crate::postings::Postings; pub use crate::schema::{DateOptions, DatePrecision, Document, Term}; /// Index format version. -const INDEX_FORMAT_VERSION: u32 = 4; +const INDEX_FORMAT_VERSION: u32 = 5; /// Structure version for the index. #[derive(Clone, PartialEq, Eq, Serialize, Deserialize)]