You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2016/09/09 17:33:51 UTC

lucene-solr:branch_5x: addVersion on branch_5x for 5.5.3 release and move a commit to 5.5.4 in CHANGES

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_5x 9a8ff6426 -> 8045df03d


addVersion on branch_5x for 5.5.3 release and move a commit to 5.5.4 in CHANGES


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/8045df03
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/8045df03
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/8045df03

Branch: refs/heads/branch_5x
Commit: 8045df03d8b69e05d18e72f35f51eabef0dd8301
Parents: 9a8ff64
Author: anshum <an...@apache.org>
Authored: Fri Sep 9 10:33:38 2016 -0700
Committer: anshum <an...@apache.org>
Committed: Fri Sep 9 10:33:38 2016 -0700

----------------------------------------------------------------------
 lucene/CHANGES.txt                                       | 5 ++++-
 lucene/core/src/java/org/apache/lucene/util/Version.java | 7 +++++++
 2 files changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/8045df03/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index fa99930..1fc42b0 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -3,7 +3,7 @@ Lucene Change Log
 For more information on past and future Lucene versions, please see:
 http://s.apache.org/luceneversions
 
-======================= Lucene 5.5.3 =======================
+======================= Lucene 5.5.4 =======================
 
 Bug Fixes
 
@@ -11,6 +11,9 @@ Bug Fixes
   trying to highlight a query containing a degenerate case of a MultiPhraseQuery with one
   term.  (Thomas Kappler via David Smiley)
 
+======================= Lucene 5.5.3 =======================
+(No Changes)
+
 ======================= Lucene 5.5.2 =======================
 
 Bug Fixes

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/8045df03/lucene/core/src/java/org/apache/lucene/util/Version.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/util/Version.java b/lucene/core/src/java/org/apache/lucene/util/Version.java
index 10036ef..0f920c0 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -294,6 +294,13 @@ public final class Version {
   public static final Version LUCENE_5_5_2 = new Version(5, 5, 2);
 
   /**
+   * Match settings and bugs in Lucene's 5.5.3 release.
+   * @deprecated Use latest
+   */
+  @Deprecated
+  public static final Version LUCENE_5_5_3 = new Version(5, 5, 3);
+
+  /**
    * Match settings and bugs in Lucene's 5.6.0 release.
    */
   public static final Version LUCENE_5_6_0 = new Version(5, 6, 0);