Skip to content

Commit fc1ead8

Browse files
committed
Bump version on main branch to 3.2
Signed-off-by: Andrew Ross <andrross@amazon.com>
1 parent 55ee9bd commit fc1ead8

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
@@ -47,3 +47,4 @@ BWC_VERSION:
4747
- "2.19.2"
4848
- "2.19.3"
4949
- "3.0.0"
50+
- "3.1.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.1.0
2+
opensearch = 3.2.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.1.0"
2+
opensearch = "3.2.0"
33
lucene = "10.2.1"
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
@@ -119,7 +119,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
119119
public static final Version V_2_19_3 = new Version(2190399, org.apache.lucene.util.Version.LUCENE_9_12_1);
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);
122-
public static final Version CURRENT = V_3_1_0;
122+
public static final Version V_3_2_0 = new Version(3020099, org.apache.lucene.util.Version.LUCENE_10_2_1);
123+
public static final Version CURRENT = V_3_2_0;
123124

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

0 commit comments

Comments
 (0)