Add version 1.2.1. (#1701)

Signed-off-by: dblock <dblock@dblock.org>
This commit is contained in:
Daniel Doubrovkine (dB.) 2021-12-10 19:47:52 +00:00 committed by GitHub
parent baa10b9b20
commit ec00b86859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -79,4 +79,5 @@ BWC_VERSION:
- "1.1.0"
- "1.1.1"
- "1.2.0"
- "1.2.1"
- "1.3.0"

View File

@ -75,6 +75,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_1_1_0 = new Version(1010099, org.apache.lucene.util.Version.LUCENE_8_9_0);
public static final Version V_1_1_1 = new Version(1010199, org.apache.lucene.util.Version.LUCENE_8_9_0);
public static final Version V_1_2_0 = new Version(1020099, org.apache.lucene.util.Version.LUCENE_8_10_1);
public static final Version V_1_2_1 = new Version(1020199, org.apache.lucene.util.Version.LUCENE_8_10_1);
public static final Version V_1_3_0 = new Version(1030099, org.apache.lucene.util.Version.LUCENE_8_10_1);
public static final Version V_2_0_0 = new Version(2000099, org.apache.lucene.util.Version.LUCENE_8_10_1);
public static final Version CURRENT = V_2_0_0;