Skip to content

Commit

Permalink
Prepare for next development iteration, 1.2.4.
Browse files Browse the repository at this point in the history
Signed-off-by: dblock <dblock@amazon.com>
  • Loading branch information
dblock committed Dec 22, 2021
1 parent 8a529d7 commit 042fba0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,4 @@ BWC_VERSION:
- "1.2.0"
- "1.2.1"
- "1.2.2"
- "1.2.3"
2 changes: 1 addition & 1 deletion buildSrc/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
opensearch = 1.2.3
opensearch = 1.2.4
lucene = 8.10.1

bundled_jdk_vendor = adoptopenjdk
Expand Down
3 changes: 2 additions & 1 deletion server/src/main/java/org/opensearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
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 CURRENT = V_1_2_3;
public static final Version V_1_2_4 = new Version(1020499, org.apache.lucene.util.Version.LUCENE_8_10_1);
public static final Version CURRENT = V_1_2_4;

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

0 comments on commit 042fba0

Please sign in to comment.