Add the 7.7.1 Version

Add the bumped 7.7 branch new version, 7.7.1
This commit is contained in:
Bogdan Pintea 2020-05-13 17:18:43 +02:00
parent 26382dff19
commit 2f0663c490
2 changed files with 2 additions and 0 deletions

View File

@ -58,4 +58,5 @@ BWC_VERSION:
- "7.6.1"
- "7.6.2"
- "7.7.0"
- "7.7.1"
- "7.8.0"

View File

@ -135,6 +135,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_6_1 = new Version(7060199, org.apache.lucene.util.Version.LUCENE_8_4_0);
public static final Version V_7_6_2 = new Version(7060299, org.apache.lucene.util.Version.LUCENE_8_4_0);
public static final Version V_7_7_0 = new Version(7070099, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version V_7_7_1 = new Version(7070199, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version V_7_8_0 = new Version(7080099, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version V_7_9_0 = new Version(7090099, org.apache.lucene.util.Version.LUCENE_8_6_0);
public static final Version CURRENT = V_7_9_0;