Skip to content

Commit ae5f3c9

Browse files
opensearch-ci-botreta
authored andcommitted
Increment version to 2.19.1
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Andriy Redko <drreta@gmail.com>
1 parent 3aa0eb1 commit ae5f3c9

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.ci/bwcVersions

+2-1
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,5 @@ BWC_VERSION:
100100
- "2.17.1"
101101
- "2.17.2"
102102
- "2.18.0"
103-
- "2.18.1"
103+
- "2.18.1"
104+
- "2.19.0"

buildSrc/version.properties

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

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
opensearch = "2.19.0"
2+
opensearch = "2.19.1"
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
@@ -145,7 +145,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
145145
public static final Version V_2_18_0 = new Version(2180099, org.apache.lucene.util.Version.LUCENE_9_12_0);
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);
148-
public static final Version CURRENT = V_2_19_0;
148+
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;
149150

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

0 commit comments

Comments
 (0)