Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Bwc checks for 7.10.3 #93

Merged
merged 1 commit into from
Feb 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ BWC_VERSION:
- "6.8.12"
- "6.8.13"
- "6.8.14"
- "6.8.15"
- "7.0.0"
- "7.0.1"
- "7.1.0"
Expand Down
1 change: 1 addition & 0 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_8_12 = new Version(6081299, LUCENE_7_7_3);
public static final Version V_6_8_13 = new Version(6081399, LUCENE_7_7_3);
public static final Version V_6_8_14 = new Version(6081499, LUCENE_7_7_3);
public static final Version V_6_8_15 = new Version(6081599, org.apache.lucene.util.Version.LUCENE_7_7_3);
public static final Version V_7_0_0 = new Version(7000099, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_7_0_1 = new Version(7000199, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_7_1_0 = new Version(7010099, org.apache.lucene.util.Version.LUCENE_8_0_0);
Expand Down