Skip to content

Commit

Permalink
Bump versions for 8.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
idegtiarenko committed Mar 8, 2022
1 parent c59fabc commit 987a83b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .backportrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"targetPRLabels": ["backport"],
"branchLabelMapping": {
"^v8.1.0$": "master",
"^v8.1.1$": "master",
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$": "$1.$2"
}
}
2 changes: 1 addition & 1 deletion .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ BWC_VERSION:
- "7.17.2"
- "8.0.0"
- "8.0.1"
- "8.0.2"
- "8.1.0"
- "8.1.1"
3 changes: 1 addition & 2 deletions .ci/snapshotBwcVersions
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
BWC_VERSION:
- "7.17.2"
- "8.0.2"
- "8.1.0"
- "8.1.1"
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.0
elasticsearch = 8.1.1
lucene = 9.0.0

bundled_jdk_vendor = adoptium
Expand Down
4 changes: 2 additions & 2 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_17_2 = new Version(7_17_02_99, LUCENE_8_11_1);
public static final Version V_8_0_0 = new Version(8_00_00_99, org.apache.lucene.util.Version.LUCENE_9_0_0);
public static final Version V_8_0_1 = new Version(8_00_01_99, org.apache.lucene.util.Version.LUCENE_9_0_0);
public static final Version V_8_0_2 = new Version(8_00_02_99, org.apache.lucene.util.Version.LUCENE_9_0_0);
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 CURRENT = V_8_1_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 CURRENT = V_8_1_1;

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

0 comments on commit 987a83b

Please sign in to comment.