Skip to content

Commit

Permalink
Bump versions for 8.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
arteam committed Mar 31, 2022
1 parent af8bb32 commit 1683e90
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ BWC_VERSION:
- "8.1.0"
- "8.1.1"
- "8.1.2"
- "8.1.3"
2 changes: 1 addition & 1 deletion .ci/snapshotBwcVersions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
BWC_VERSION:
- "7.17.3"
- "8.1.2"
- "8.1.3"
2 changes: 1 addition & 1 deletion build-tools-internal/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch = 8.1.2
elasticsearch = 8.1.3
lucene = 9.0.0

bundled_jdk_vendor = adoptium
Expand Down
3 changes: 2 additions & 1 deletion server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_8_1_0 = new Version(8_01_00_99, org.apache.lucene.util.Version.LUCENE_9_0_0);
public static final Version V_8_1_1 = new Version(8_01_01_99, org.apache.lucene.util.Version.LUCENE_9_0_0);
public static final Version V_8_1_2 = new Version(8_01_02_99, org.apache.lucene.util.Version.LUCENE_9_0_0);
public static final Version CURRENT = V_8_1_2;
public static final Version V_8_1_3 = new Version(8_01_03_99, org.apache.lucene.util.Version.LUCENE_9_0_0);
public static final Version CURRENT = V_8_1_3;

private static final ImmutableOpenIntMap<Version> idToVersion;
private static final ImmutableOpenMap<String, Version> stringToVersion;
Expand Down

0 comments on commit 1683e90

Please sign in to comment.