Skip to content

Commit 1893d20

Browse files
opensearch-trigger-bot[bot]opensearch-ci-botreta
authored
[AUTO] Increment version to 2.17.1. (#15964)
* Increment version to 2.17.1 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update Version.java Signed-off-by: Andriy Redko <[email protected]> --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Andriy Redko <[email protected]> Co-authored-by: opensearch-ci-bot <[email protected]> Co-authored-by: Andriy Redko <[email protected]>
1 parent 5c586ef commit 1893d20

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
@@ -95,3 +95,4 @@ BWC_VERSION:
9595
- "2.15.1"
9696
- "2.16.0"
9797
- "2.16.1"
98+
- "2.17.0"

buildSrc/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 2.17.0
1+
opensearch = 2.17.1
22
lucene = 9.11.1
33

44
bundled_jdk_vendor = adoptium

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
139139
public static final Version V_2_16_0 = new Version(2160099, org.apache.lucene.util.Version.LUCENE_9_11_1);
140140
public static final Version V_2_16_1 = new Version(2160199, org.apache.lucene.util.Version.LUCENE_9_11_1);
141141
public static final Version V_2_17_0 = new Version(2170099, org.apache.lucene.util.Version.LUCENE_9_11_1);
142-
public static final Version CURRENT = V_2_17_0;
142+
public static final Version V_2_17_1 = new Version(2170199, org.apache.lucene.util.Version.LUCENE_9_11_1);
143+
public static final Version CURRENT = V_2_17_1;
143144

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

0 commit comments

Comments
 (0)