Skip to content

Commit f28d189

Browse files
Increment version to 2.7.1 (opensearch-project#7370)
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: opensearch-ci-bot <opensearch-ci-bot@users.noreply.github.com>
1 parent bbb4e1e commit f28d189

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.ci/bwcVersions

+1
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,4 @@ BWC_VERSION:
6464
- "2.5.1"
6565
- "2.6.0"
6666
- "2.6.1"
67+
- "2.7.0"

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 2.7.0
1+
opensearch = 2.7.1
22
lucene = 9.5.0
33

44
bundled_jdk_vendor = adoptium

server/src/main/java/org/opensearch/Version.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
112112
public static final Version V_2_6_0 = new Version(2060099, org.apache.lucene.util.Version.LUCENE_9_5_0);
113113
public static final Version V_2_6_1 = new Version(2060199, org.apache.lucene.util.Version.LUCENE_9_5_0);
114114
public static final Version V_2_7_0 = new Version(2070099, org.apache.lucene.util.Version.LUCENE_9_5_0);
115-
public static final Version CURRENT = V_2_7_0;
115+
public static final Version V_2_7_1 = new Version(2070199, org.apache.lucene.util.Version.LUCENE_9_5_0);
116+
public static final Version CURRENT = V_2_7_1;
116117

117118
public static Version readVersion(StreamInput in) throws IOException {
118119
return fromId(in.readVInt());

0 commit comments

Comments
 (0)