Browse Source

Bump versions after 8.8.1 release

Mark Vieira 2 years ago
parent
commit
9fe1b628a7

+ 1 - 0
.ci/bwcVersions

@@ -89,4 +89,5 @@ BWC_VERSION:
   - "8.7.1"
   - "8.8.0"
   - "8.8.1"
+  - "8.8.2"
   - "8.9.0"

+ 1 - 1
.ci/snapshotBwcVersions

@@ -1,4 +1,4 @@
 BWC_VERSION:
   - "7.17.11"
-  - "8.8.1"
+  - "8.8.2"
   - "8.9.0"

+ 1 - 0
server/src/main/java/org/elasticsearch/Version.java

@@ -141,6 +141,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
     public static final Version V_8_7_1 = new Version(8_07_01_99, IndexVersion.V_8_7_1);
     public static final Version V_8_8_0 = new Version(8_08_00_99, IndexVersion.V_8_8_0);
     public static final Version V_8_8_1 = new Version(8_08_01_99, IndexVersion.V_8_8_1);
+    public static final Version V_8_8_2 = new Version(8_08_02_99, IndexVersion.V_8_8_2);
     public static final Version V_8_9_0 = new Version(8_09_00_99, IndexVersion.V_8_9_0);
     public static final Version CURRENT = V_8_9_0;
 

+ 1 - 0
server/src/main/java/org/elasticsearch/index/IndexVersion.java

@@ -164,6 +164,7 @@ public record IndexVersion(int id, Version luceneVersion) implements Comparable<
     public static final IndexVersion V_8_7_1 = registerIndexVersion(8_07_01_99, Version.LUCENE_9_5_0, "758780b8-4b0c-44c6-af5d-fdac10b6093a");
     public static final IndexVersion V_8_8_0 = registerIndexVersion(8_08_00_99, Version.LUCENE_9_6_0, "d6ffc8d7-f6bd-469b-8495-01688c310000");
     public static final IndexVersion V_8_8_1 = registerIndexVersion(8_08_01_99, Version.LUCENE_9_6_0, "a613499e-ec1a-4b0b-81d3-a766aff3c27c");
+    public static final IndexVersion V_8_8_2 = registerIndexVersion(8_08_02_99, Version.LUCENE_9_6_0, "9db9d888-6be8-4a58-825c-f423fd8c6b00");
     public static final IndexVersion V_8_9_0 = registerIndexVersion(8_09_00_99, Version.LUCENE_9_7_0, "32f6dbab-cc24-4f5b-87b5-015a848480d9");
     /*
      * READ THE JAVADOC ABOVE BEFORE ADDING NEW INDEX VERSIONS