Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
upgrade to lucene 4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kan committed May 10, 2014
1 parent 3a7faa1 commit 1167ada
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
* Update to 4.8.0

This is a trivial update (maven, no code changes), but a required one: index version changed.

This version has also been tested for loading index from HDFS of hadoop 2.2.0 running in pseudo distributed mode.

* Update to 4.7.0

Release based on pull request of Petri Kivikangas (https://github.com/DmitryKey/luke/pull/2)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<lucene.version>4.7.0</lucene.version>
<lucene.version>4.8.0</lucene.version>
<ehcache.version>2.6.2</ehcache.version>
<hadoop.version>0.20.2</hadoop.version>
<log4j.version>1.2.17</log4j.version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/getopt/luke/Luke.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class Luke extends Thinlet implements ClipboardOwner {

private static final long serialVersionUID = -470469999079073156L;

public static Version LV = Version.LUCENE_47;
public static Version LV = Version.LUCENE_48;

private Directory dir = null;
String pName = null;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/xml/about.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<dialog modal="true" name="about" columns="1" gap="8" icon="/img/luke.gif" text=" About" left="4" right="4" bottom="4" top="4" close="remove(about)">
<label halign="center" valign="center" text="v 4.7.0 (2014-03-10)" font="10" icon="/img/luke-big.gif"/>
<label halign="center" valign="center" text="v 4.8.0 (2014-05-10)" font="10" icon="/img/luke-big.gif"/>
<button type="link" tooltip="Go to Luke home page" action="goUrl(this)" halign="center" property="url=http://www.getopt.org/luke" foreground="#5aaa88" text="Lucene Index Toolbox" font="18 bold"/>
<label halign="center" font="13" text="Created by Andrzej Bialecki &lt;[email protected]&gt;"/>
<label halign="center" font="13" text="Maintained and further developed by Dmitry Kan &lt;[email protected]&gt;"/>
Expand Down

0 comments on commit 1167ada

Please sign in to comment.