Skip to content

Commit

Permalink
Bump versions after 8.5.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bpintea committed Nov 22, 2022
1 parent 63fa418 commit e207978
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .backportrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"targetBranchChoices" : [ "main", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
"targetPRLabels" : [ "backport" ],
"branchLabelMapping" : {
"^v8.5.2$" : "main",
"^v8.5.3$" : "main",
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
}
}
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,4 @@ BWC_VERSION:
- "8.5.0"
- "8.5.1"
- "8.5.2"
- "8.5.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.8"
- "8.5.2"
- "8.5.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.5.2
elasticsearch = 8.5.3
lucene = 9.4.1

bundled_jdk_vendor = openjdk
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 @@ -126,7 +126,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_8_5_0 = new Version(8_05_00_99, org.apache.lucene.util.Version.LUCENE_9_4_1);
public static final Version V_8_5_1 = new Version(8_05_01_99, org.apache.lucene.util.Version.LUCENE_9_4_1);
public static final Version V_8_5_2 = new Version(8_05_02_99, org.apache.lucene.util.Version.LUCENE_9_4_1);
public static final Version CURRENT = V_8_5_2;
public static final Version V_8_5_3 = new Version(8_05_03_99, org.apache.lucene.util.Version.LUCENE_9_4_1);
public static final Version CURRENT = V_8_5_3;

private static final Map<Integer, Version> idToVersion;
private static final Map<String, Version> stringToVersion;
Expand Down

0 comments on commit e207978

Please sign in to comment.