Skip to content

Commit eb62e57

Browse files
opensearch-trigger-bot[bot]opensearch-ci-botcwperksandrross
authored
[AUTO] Increment version to 2.19.2. (#17482)
* Increment version to 2.19.2 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Fix version number Signed-off-by: Craig Perkins <cwperx@amazon.com> * Update version catalog Signed-off-by: Andrew Ross <andrross@amazon.com> --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Craig Perkins <cwperx@amazon.com> Signed-off-by: Andrew Ross <andrross@amazon.com> Co-authored-by: opensearch-ci-bot <83309141+opensearch-ci-bot@users.noreply.github.com> Co-authored-by: Craig Perkins <cwperx@amazon.com> Co-authored-by: Andrew Ross <andrross@amazon.com>
1 parent e3a5d64 commit eb62e57

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.ci/bwcVersions

+1
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,4 @@ BWC_VERSION:
102102
- "2.18.0"
103103
- "2.18.1"
104104
- "2.19.0"
105+
- "2.19.1"

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
opensearch = 2.19.1
1+
opensearch = 2.19.2

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
opensearch = "2.19.1"
2+
opensearch = "2.19.2"
33
lucene = "9.12.1"
44

55
bundled_jdk_vendor = "adoptium"

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
146146
public static final Version V_2_18_1 = new Version(2180199, org.apache.lucene.util.Version.LUCENE_9_12_1);
147147
public static final Version V_2_19_0 = new Version(2190099, org.apache.lucene.util.Version.LUCENE_9_12_1);
148148
public static final Version V_2_19_1 = new Version(2190199, org.apache.lucene.util.Version.LUCENE_9_12_1);
149-
public static final Version CURRENT = V_2_19_1;
149+
public static final Version V_2_19_2 = new Version(2190299, org.apache.lucene.util.Version.LUCENE_9_12_1);
150+
public static final Version CURRENT = V_2_19_2;
150151

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

0 commit comments

Comments
 (0)