Skip to content

Commit a34e927

Browse files
Incremented version to 1.3.19 (opensearch-project#14779)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: opensearch-ci-bot <83309141+opensearch-ci-bot@users.noreply.github.com>
1 parent 482ebc7 commit a34e927

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.ci/bwcVersions

+1
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,4 @@ BWC_VERSION:
102102
- "1.3.15"
103103
- "1.3.16"
104104
- "1.3.17"
105+
- "1.3.18"

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 1.3.18
1+
opensearch = 1.3.19
22
lucene = 8.10.1
33

44
bundled_jdk_vendor = adoptium

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
9999
public static final Version V_1_3_16 = new Version(1031699, org.apache.lucene.util.Version.LUCENE_8_10_1);
100100
public static final Version V_1_3_17 = new Version(1031799, org.apache.lucene.util.Version.LUCENE_8_10_1);
101101
public static final Version V_1_3_18 = new Version(1031899, org.apache.lucene.util.Version.LUCENE_8_10_1);
102-
public static final Version CURRENT = V_1_3_18;
102+
public static final Version V_1_3_19 = new Version(1031999, org.apache.lucene.util.Version.LUCENE_8_10_1);
103+
public static final Version CURRENT = V_1_3_19;
103104

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

0 commit comments

Comments
 (0)