From 6e99cdc7faa7bb16d34fbde5175911554c9b0e9e Mon Sep 17 00:00:00 2001 From: Mark Vieira Date: Wed, 27 Oct 2021 08:31:01 -0700 Subject: [PATCH] Bump version to 8.1.0 --- .backportrc.json | 3 +++ .ci/bwcVersions | 1 + build-tools-internal/version.properties | 2 +- server/src/main/java/org/elasticsearch/Version.java | 3 ++- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.backportrc.json b/.backportrc.json index ce902fc519015..92d183a85428d 100644 --- a/.backportrc.json +++ b/.backportrc.json @@ -1,6 +1,8 @@ { "upstream": "elastic/elasticsearch", "targetBranchChoices": [ + "master", + "8.0", "7.16", "7.15", "7.14", @@ -8,6 +10,7 @@ ], "targetPRLabels": ["backport"], "branchLabelMapping": { + "^v8.1.0$": "master", "^v(\\d+).(\\d+).\\d+$": "$1.$2" } } diff --git a/.ci/bwcVersions b/.ci/bwcVersions index 6a3b8828bc922..aa252bf935260 100644 --- a/.ci/bwcVersions +++ b/.ci/bwcVersions @@ -46,3 +46,4 @@ BWC_VERSION: - "7.15.2" - "7.16.0" - "8.0.0" + - "8.1.0" diff --git a/build-tools-internal/version.properties b/build-tools-internal/version.properties index 8db18b63c36ba..41af236ebd6f0 100644 --- a/build-tools-internal/version.properties +++ b/build-tools-internal/version.properties @@ -1,4 +1,4 @@ -elasticsearch = 8.0.0 +elasticsearch = 8.1.0 lucene = 9.0.0-snapshot-2719cf6630e bundled_jdk_vendor = adoptium diff --git a/server/src/main/java/org/elasticsearch/Version.java b/server/src/main/java/org/elasticsearch/Version.java index b8d472ce6b1e8..fd5ad4462dd3f 100644 --- a/server/src/main/java/org/elasticsearch/Version.java +++ b/server/src/main/java/org/elasticsearch/Version.java @@ -93,7 +93,8 @@ public class Version implements Comparable, 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 idToVersion; private static final ImmutableOpenMap stringToVersion;