Skip to content

Commit 9fe1b62

Browse files
committed
Bump versions after 8.8.1 release
1 parent 763cd14 commit 9fe1b62

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,5 @@ BWC_VERSION:
8989
- "8.7.1"
9090
- "8.8.0"
9191
- "8.8.1"
92+
- "8.8.2"
9293
- "8.9.0"

.ci/snapshotBwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
BWC_VERSION:
22
- "7.17.11"
3-
- "8.8.1"
3+
- "8.8.2"
44
- "8.9.0"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
141141
public static final Version V_8_7_1 = new Version(8_07_01_99, IndexVersion.V_8_7_1);
142142
public static final Version V_8_8_0 = new Version(8_08_00_99, IndexVersion.V_8_8_0);
143143
public static final Version V_8_8_1 = new Version(8_08_01_99, IndexVersion.V_8_8_1);
144+
public static final Version V_8_8_2 = new Version(8_08_02_99, IndexVersion.V_8_8_2);
144145
public static final Version V_8_9_0 = new Version(8_09_00_99, IndexVersion.V_8_9_0);
145146
public static final Version CURRENT = V_8_9_0;
146147

server/src/main/java/org/elasticsearch/index/IndexVersion.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ private static IndexVersion registerIndexVersion(int id, Version luceneVersion,
164164
public static final IndexVersion V_8_7_1 = registerIndexVersion(8_07_01_99, Version.LUCENE_9_5_0, "758780b8-4b0c-44c6-af5d-fdac10b6093a");
165165
public static final IndexVersion V_8_8_0 = registerIndexVersion(8_08_00_99, Version.LUCENE_9_6_0, "d6ffc8d7-f6bd-469b-8495-01688c310000");
166166
public static final IndexVersion V_8_8_1 = registerIndexVersion(8_08_01_99, Version.LUCENE_9_6_0, "a613499e-ec1a-4b0b-81d3-a766aff3c27c");
167+
public static final IndexVersion V_8_8_2 = registerIndexVersion(8_08_02_99, Version.LUCENE_9_6_0, "9db9d888-6be8-4a58-825c-f423fd8c6b00");
167168
public static final IndexVersion V_8_9_0 = registerIndexVersion(8_09_00_99, Version.LUCENE_9_7_0, "32f6dbab-cc24-4f5b-87b5-015a848480d9");
168169
/*
169170
* READ THE JAVADOC ABOVE BEFORE ADDING NEW INDEX VERSIONS

0 commit comments

Comments
 (0)