From 84e543b679027e983f97ba13e83986cda416cb65 Mon Sep 17 00:00:00 2001 From: Robert Newson Date: Sat, 5 Jul 2014 19:43:21 +0100 Subject: [PATCH] Bump the Version we use to create/open indexes Lucene 4.8 adds checksums and Lucene 4.9 adds 'SortedNumeric'. The former is immediately useful, the latter only with a code change to use that new type, but we might as well update to the latest here. --- .../java/com/github/rnewson/couchdb/lucene/util/Constants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/rnewson/couchdb/lucene/util/Constants.java b/src/main/java/com/github/rnewson/couchdb/lucene/util/Constants.java index 80ff40a3..afaebe08 100644 --- a/src/main/java/com/github/rnewson/couchdb/lucene/util/Constants.java +++ b/src/main/java/com/github/rnewson/couchdb/lucene/util/Constants.java @@ -22,7 +22,7 @@ public final class Constants { - public static final Version VERSION = Version.LUCENE_47; + public static final Version VERSION = Version.LUCENE_4_9; public static final Analyzer ANALYZER = new StandardAnalyzer(VERSION);