Skip to content

Commit 8d3386c

Browse files
Bump main branch to be version 3.1.0 (#18043)
* Bump main branch to be version 3.1.0 Signed-off-by: Peter Zhu <[email protected]> * Update current version Signed-off-by: Peter Zhu <[email protected]> * Update bwc version Signed-off-by: Peter Zhu <[email protected]> * Update bwc version Signed-off-by: Peter Zhu <[email protected]> * Bump main branch to be version 3.1.0 Signed-off-by: Peter Zhu <[email protected]> * Update current version Signed-off-by: Peter Zhu <[email protected]> * Update bwc version Signed-off-by: Peter Zhu <[email protected]> * Update bwc version Signed-off-by: Peter Zhu <[email protected]> * Update java-versions.properties Signed-off-by: Andrew Ross <[email protected]> --------- Signed-off-by: Peter Zhu <[email protected]> Signed-off-by: Andrew Ross <[email protected]> Co-authored-by: Andrew Ross <[email protected]>
1 parent d3eb8fe commit 8d3386c

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,4 @@ BWC_VERSION:
4545
- "2.19.0"
4646
- "2.19.1"
4747
- "2.19.2"
48+
- "3.0.0"

.ci/java-versions.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# are 'java' or 'openjdk' followed by the major release number.
1515

1616
# See please https://docs.gradle.org/8.10/userguide/upgrading_version_8.html#minimum_daemon_jvm_version
17-
OPENSEARCH_BUILD_JAVA=openjdk17
18-
OPENSEARCH_RUNTIME_JAVA=java11
17+
OPENSEARCH_BUILD_JAVA=openjdk21
18+
OPENSEARCH_RUNTIME_JAVA=java21
1919
GRADLE_TASK=build
2020
GRADLE_EXTRA_ARGS=

buildSrc/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Please use ../gradle/libs.versions.toml for dependency management
2-
opensearch = 3.0.0
2+
opensearch = 3.1.0

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
opensearch = "3.0.0"
2+
opensearch = "3.1.0"
33
lucene = "10.1.0"
44

55
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
@@ -117,7 +117,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
117117
public static final Version V_2_19_1 = new Version(2190199, org.apache.lucene.util.Version.LUCENE_9_12_1);
118118
public static final Version V_2_19_2 = new Version(2190299, org.apache.lucene.util.Version.LUCENE_9_12_1);
119119
public static final Version V_3_0_0 = new Version(3000099, org.apache.lucene.util.Version.LUCENE_10_1_0);
120-
public static final Version CURRENT = V_3_0_0;
120+
public static final Version V_3_1_0 = new Version(3010099, org.apache.lucene.util.Version.LUCENE_10_1_0);
121+
public static final Version CURRENT = V_3_1_0;
121122

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

0 commit comments

Comments
 (0)