You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by iv...@apache.org on 2020/04/16 07:27:16 UTC

[lucene-solr] branch master updated: Add bugfix version 8.5.1

This is an automated email from the ASF dual-hosted git repository.

ivera pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a88ab0  Add bugfix version 8.5.1
8a88ab0 is described below

commit 8a88ab0e7c2ee7925994837d423aabee41d5ab88
Author: iverase <iv...@apache.org>
AuthorDate: Thu Apr 16 09:27:06 2020 +0200

    Add bugfix version 8.5.1
---
 lucene/CHANGES.txt                                       | 6 ++++++
 lucene/core/src/java/org/apache/lucene/util/Version.java | 7 +++++++
 solr/CHANGES.txt                                         | 8 ++++++++
 3 files changed, 21 insertions(+)

diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index 5bfdeb4..652ec38 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -197,6 +197,12 @@ Other
 * LUCENE-9271: ByteBufferIndexInput was refactored to work on top of the
   ByteBuffer API. (Adrien Grand)
 
+======================= Lucene 8.5.1 =======================
+
+Bug Fixes
+---------------------
+(No changes)
+
 ======================= Lucene 8.5.0 =======================
 
 API Changes
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 d31e2ae..aa1f348 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -96,6 +96,13 @@ public final class Version {
   public static final Version LUCENE_8_5_0 = new Version(8, 5, 0);
 
   /**
+   * Match settings and bugs in Lucene's 8.5.1 release.
+   * @deprecated Use latest
+   */
+  @Deprecated
+  public static final Version LUCENE_8_5_1 = new Version(8, 5, 1);
+
+  /**
    * Match settings and bugs in Lucene's 9.0.0 release.
    * <p>
    * Use this to get the latest &amp; greatest settings, bug
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 888acd6..337f937 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -155,6 +155,14 @@ Other Changes
   removed from solr-core in favor of SolrNamedThreadFactory in solrj package and all solr-core classes now use
   SolrNamedThreadFactory. (Andras Salamon, shalin)
 
+==================  8.5.1 ==================
+
+Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
+
+Bug Fixes
+---------------------
+(No changes)
+
 ==================  8.5.0 ==================
 
 Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.