Skip to content

Commit acfa644

Browse files
opensearch-trigger-bot[bot]opensearch-ci-botTianli Feng
authored
Incremented version to 2.0.1 (#3450)
Co-authored-by: opensearch-ci-bot <[email protected]> Co-authored-by: Tianli Feng <[email protected]>
1 parent 1575b38 commit acfa644

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ BWC_VERSION:
4141
- "1.3.2"
4242
- "1.3.3"
4343
- "1.4.0"
44+
- "2.0.0"

buildSrc/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 2.0.0
1+
opensearch = 2.0.1
22
lucene = 9.1.0
33

44
bundled_jdk_vendor = adoptium

server/src/main/java/org/opensearch/Version.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
8989
public static final Version V_1_3_3 = new Version(1030399, org.apache.lucene.util.Version.LUCENE_8_10_1);
9090
public static final Version V_1_4_0 = new Version(1040099, org.apache.lucene.util.Version.LUCENE_8_10_1);
9191
public static final Version V_2_0_0 = new Version(2000099, org.apache.lucene.util.Version.LUCENE_9_1_0);
92-
public static final Version CURRENT = V_2_0_0;
92+
public static final Version V_2_0_1 = new Version(2000199, org.apache.lucene.util.Version.LUCENE_9_1_0);
93+
public static final Version CURRENT = V_2_0_1;
9394

9495
public static Version readVersion(StreamInput in) throws IOException {
9596
return fromId(in.readVInt());

0 commit comments

Comments
 (0)