Skip to content

Commit c0fee38

Browse files
committed
Increment version to 1.2.3.
Signed-off-by: dblock <dblock@amazon.com>
1 parent 529b0cb commit c0fee38

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
@@ -80,3 +80,4 @@ BWC_VERSION:
8080
- "1.1.1"
8181
- "1.2.0"
8282
- "1.2.1"
83+
- "1.2.2"

buildSrc/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 1.2.2
1+
opensearch = 1.2.3
22
lucene = 8.10.1
33

44
bundled_jdk_vendor = adoptopenjdk

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
7777
public static final Version V_1_2_0 = new Version(1020099, org.apache.lucene.util.Version.LUCENE_8_10_1);
7878
public static final Version V_1_2_1 = new Version(1020199, org.apache.lucene.util.Version.LUCENE_8_10_1);
7979
public static final Version V_1_2_2 = new Version(1020299, org.apache.lucene.util.Version.LUCENE_8_10_1);
80-
public static final Version CURRENT = V_1_2_2;
80+
public static final Version V_1_2_3 = new Version(1020399, org.apache.lucene.util.Version.LUCENE_8_10_1);
81+
public static final Version CURRENT = V_1_2_3;
8182

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

0 commit comments

Comments
 (0)