Skip to content

Commit a5cc554

Browse files
opensearch-trigger-bot[bot]opensearch-ci-botkotwanikunal
authored
[AUTO] Increment version to 2.11.2. (opensearch-project#11422)
* Increment version to 2.11.2 Signed-off-by: GitHub <noreply@github.com> * Fix version bump 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 6b1986e commit a5cc554

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
@@ -77,3 +77,4 @@ BWC_VERSION:
7777
- "2.10.0"
7878
- "2.10.1"
7979
- "2.11.0"
80+
- "2.11.1"

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 2.11.1
1+
opensearch = 2.11.2
22
lucene = 9.7.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
@@ -121,7 +121,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
121121
public static final Version V_2_10_1 = new Version(2100199, org.apache.lucene.util.Version.LUCENE_9_7_0);
122122
public static final Version V_2_11_0 = new Version(2110099, org.apache.lucene.util.Version.LUCENE_9_7_0);
123123
public static final Version V_2_11_1 = new Version(2110199, org.apache.lucene.util.Version.LUCENE_9_7_0);
124-
public static final Version CURRENT = V_2_11_1;
124+
public static final Version V_2_11_2 = new Version(2110299, org.apache.lucene.util.Version.LUCENE_9_7_0);
125+
public static final Version CURRENT = V_2_11_2;
125126

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

0 commit comments

Comments
 (0)