Add version 1.2.3. (#1760)

Signed-off-by: dblock <dblock@dblock.org>
This commit is contained in:
Daniel Doubrovkine (dB.) 2021-12-17 17:14:37 +00:00 committed by GitHub
parent 4b97713a2f
commit bbb6e656c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -81,4 +81,5 @@ BWC_VERSION:
- "1.2.0"
- "1.2.1"
- "1.2.2"
- "1.2.3"
- "1.3.0"

View File

@ -77,6 +77,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
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_2_2 = new Version(1020299, org.apache.lucene.util.Version.LUCENE_8_10_1);
public static final Version V_1_2_3 = new Version(1020399, 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;

View File

@ -179,7 +179,7 @@ public class BuildTests extends OpenSearchTestCase {
);
assertNotEquals(build, differentSnapshot);
Build differentVersion = new Build(build.type(), build.hash(), build.date(), build.isSnapshot(), "1.2.3", build.getDistribution());
Build differentVersion = new Build(build.type(), build.hash(), build.date(), build.isSnapshot(), "0.1.2", build.getDistribution());
assertNotEquals(build, differentVersion);
}