Skip to content

Commit

Permalink
Add version 8.3.1 and remove 8.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaverner committed Jun 28, 2022
1 parent f253965 commit 8c5647b
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 @@ -10,7 +10,7 @@
],
"targetPRLabels": ["backport"],
"branchLabelMapping": {
"^v8.3.0$": "master",
"^v8.3.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 @@ -64,5 +64,5 @@ BWC_VERSION:
- "8.2.1"
- "8.2.2"
- "8.2.3"
- "8.2.4"
- "8.3.0"
- "8.3.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.5"
- "8.2.4"
- "8.3.0"
- "8.3.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.3.0
elasticsearch = 8.3.1
lucene = 9.2.0

bundled_jdk_vendor = openjdk
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 @@ -112,9 +112,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_8_2_1 = new Version(8_02_01_99, org.apache.lucene.util.Version.LUCENE_9_1_0);
public static final Version V_8_2_2 = new Version(8_02_02_99, org.apache.lucene.util.Version.LUCENE_9_1_0);
public static final Version V_8_2_3 = new Version(8_02_03_99, org.apache.lucene.util.Version.LUCENE_9_1_0);
public static final Version V_8_2_4 = new Version(8_02_04_99, org.apache.lucene.util.Version.LUCENE_9_1_0);
public static final Version V_8_3_0 = new Version(8_03_00_99, org.apache.lucene.util.Version.LUCENE_9_2_0);
public static final Version CURRENT = V_8_3_0;
public static final Version V_8_3_1 = new Version(8_03_01_99, org.apache.lucene.util.Version.LUCENE_9_2_0);
public static final Version CURRENT = V_8_3_1;

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

0 comments on commit 8c5647b

Please sign in to comment.