Skip to content

Commit c7a11cf

Browse files
opensearch-trigger-bot[bot]opensearch-ci-botkotwanikunal
authored
[AUTO] Increment version to 2.13.1. (opensearch-project#13037)
* Increment version to 2.13.1 Signed-off-by: GitHub <noreply@github.com> * Fix version identifier Signed-off-by: Kunal Kotwani <kkotwani@amazon.com> --------- Signed-off-by: GitHub <noreply@github.com> Signed-off-by: Kunal Kotwani <kkotwani@amazon.com> Co-authored-by: opensearch-ci-bot <opensearch-ci-bot@users.noreply.github.com> Co-authored-by: Kunal Kotwani <kkotwani@amazon.com>
1 parent 7ec678d commit c7a11cf

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
@@ -84,3 +84,4 @@ BWC_VERSION:
8484
- "2.12.0"
8585
- "2.12.1"
8686

87+
- "2.13.0"

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 2.13.0
1+
opensearch = 2.13.1
22
lucene = 9.10.0
33

44
bundled_jdk_vendor = adoptium

libs/core/src/main/java/org/opensearch/Version.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
127127
public static final Version V_2_12_0 = new Version(2120099, org.apache.lucene.util.Version.LUCENE_9_9_2);
128128
public static final Version V_2_12_1 = new Version(2120199, org.apache.lucene.util.Version.LUCENE_9_9_2);
129129
public static final Version V_2_13_0 = new Version(2130099, org.apache.lucene.util.Version.LUCENE_9_10_0);
130-
public static final Version CURRENT = V_2_13_0;
130+
public static final Version V_2_13_1 = new Version(2130199, org.apache.lucene.util.Version.LUCENE_9_10_0);
131+
public static final Version CURRENT = V_2_13_1;
131132

132133
public static Version fromId(int id) {
133134
final Version known = LegacyESVersion.idToVersion.get(id);

0 commit comments

Comments
 (0)