Skip to content

Commit

Permalink
Bump version to 8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Oct 27, 2021
1 parent 26c8687 commit 6e99cdc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .backportrc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"upstream": "elastic/elasticsearch",
"targetBranchChoices": [
"master",
"8.0",
"7.16",
"7.15",
"7.14",
"6.8"
],
"targetPRLabels": ["backport"],
"branchLabelMapping": {
"^v8.1.0$": "master",
"^v(\\d+).(\\d+).\\d+$": "$1.$2"
}
}
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ BWC_VERSION:
- "7.15.2"
- "7.16.0"
- "8.0.0"
- "8.1.0"
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.0.0
elasticsearch = 8.1.0
lucene = 9.0.0-snapshot-2719cf6630e

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 @@ -93,7 +93,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_15_2 = new Version(7150299, org.apache.lucene.util.Version.LUCENE_8_9_0);
public static final Version V_7_16_0 = new Version(7160099, org.apache.lucene.util.Version.LUCENE_8_10_1);
public static final Version V_8_0_0 = new Version(8000099, org.apache.lucene.util.Version.LUCENE_9_0_0);
public static final Version CURRENT = V_8_0_0;
public static final Version V_8_1_0 = new Version(8010099, org.apache.lucene.util.Version.LUCENE_9_0_0);
public static final Version CURRENT = V_8_1_0;

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

0 comments on commit 6e99cdc

Please sign in to comment.