Skip to content

Commit f65b317

Browse files
committed
bump version on main branch to 3.3
Signed-off-by: bowenlan-amzn <[email protected]>
1 parent a6a61b3 commit f65b317

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ BWC_VERSION:
4848
- "2.19.3"
4949
- "3.0.0"
5050
- "3.1.0"
51+
- "3.2.0"

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.2.0
2+
opensearch = 3.3.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.2.0"
2+
opensearch = "3.3.0"
33
lucene = "10.2.2"
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
@@ -120,7 +120,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
120120
public static final Version V_3_0_0 = new Version(3000099, org.apache.lucene.util.Version.LUCENE_10_1_0);
121121
public static final Version V_3_1_0 = new Version(3010099, org.apache.lucene.util.Version.LUCENE_10_2_1);
122122
public static final Version V_3_2_0 = new Version(3020099, org.apache.lucene.util.Version.LUCENE_10_2_2);
123-
public static final Version CURRENT = V_3_2_0;
123+
public static final Version V_3_3_0 = new Version(3030099, org.apache.lucene.util.Version.LUCENE_10_2_2);
124+
public static final Version CURRENT = V_3_3_0;
124125

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

0 commit comments

Comments
 (0)