Skip to content

Commit 1f53c92

Browse files
committed
Bump versions after 7.17.20 release
1 parent c1cea7b commit 1f53c92

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,8 @@ steps:
448448
env:
449449
BWC_VERSION: 7.16.3
450450

451-
- label: "{{matrix.image}} / 7.17.19 / packaging-tests-upgrade"
452-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.19
451+
- label: "{{matrix.image}} / 7.17.20 / packaging-tests-upgrade"
452+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.20
453453
timeout_in_minutes: 300
454454
matrix:
455455
setup:
@@ -462,7 +462,7 @@ steps:
462462
machineType: custom-16-32768
463463
buildDirectory: /dev/shm/bk
464464
env:
465-
BWC_VERSION: 7.17.19
465+
BWC_VERSION: 7.17.20
466466

467467
- group: packaging-tests-windows
468468
steps:

.buildkite/pipelines/periodic.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,16 +262,16 @@ steps:
262262
buildDirectory: /dev/shm/bk
263263
env:
264264
BWC_VERSION: 7.16.3
265-
- label: 7.17.19 / bwc
266-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.19#bwcTest
265+
- label: 7.17.20 / bwc
266+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.20#bwcTest
267267
timeout_in_minutes: 300
268268
agents:
269269
provider: gcp
270270
image: family/elasticsearch-ubuntu-2004
271271
machineType: n1-standard-32
272272
buildDirectory: /dev/shm/bk
273273
env:
274-
BWC_VERSION: 7.17.19
274+
BWC_VERSION: 7.17.20
275275
- label: encryption-at-rest
276276
command: .buildkite/scripts/encryption-at-rest.sh
277277
timeout_in_minutes: 420

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ BWC_VERSION:
2525
- "7.14.2"
2626
- "7.15.2"
2727
- "7.16.3"
28-
- "7.17.19"
28+
- "7.17.20"

build-tools-internal/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
elasticsearch = 7.17.20
1+
elasticsearch = 7.17.21
22
lucene = 8.11.3
33

44
bundled_jdk_vendor = openjdk

server/src/main/java/org/elasticsearch/Version.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
179179
public static final Version V_7_17_18 = new Version(7_17_18_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
180180
public static final Version V_7_17_19 = new Version(7_17_19_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
181181
public static final Version V_7_17_20 = new Version(7_17_20_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
182-
public static final Version CURRENT = V_7_17_20;
182+
public static final Version V_7_17_21 = new Version(7_17_21_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
183+
public static final Version CURRENT = V_7_17_21;
183184

184185
private static final ImmutableOpenIntMap<Version> idToVersion;
185186
private static final ImmutableOpenMap<String, Version> stringToVersion;

0 commit comments

Comments
 (0)