Skip to content

Commit

Permalink
Bump version to 7.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joegallo committed Sep 22, 2021
1 parent 7dffc25 commit 65c57f1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,4 @@ BWC_VERSION:
- "7.14.1"
- "7.14.2"
- "7.14.3"
- "7.15.0"
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 = 7.15.0
elasticsearch = 7.15.1
lucene = 8.9.0

bundled_jdk_vendor = adoptium
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 @@ -159,7 +159,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_14_2 = new Version(7140299, org.apache.lucene.util.Version.LUCENE_8_9_0);
public static final Version V_7_14_3 = new Version(7140399, org.apache.lucene.util.Version.LUCENE_8_9_0);
public static final Version V_7_15_0 = new Version(7150099, org.apache.lucene.util.Version.LUCENE_8_9_0);
public static final Version CURRENT = V_7_15_0;
public static final Version V_7_15_1 = new Version(7150199, org.apache.lucene.util.Version.LUCENE_8_9_0);
public static final Version CURRENT = V_7_15_1;

private static final ImmutableOpenIntMap<Version> idToVersion;
private static final ImmutableOpenMap<String, Version> stringToVersion;
Expand Down

1 comment on commit 65c57f1

@joegallo
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bump version to 7.5.1

Ahem, I believe that's 7.15.1. 😳

Please sign in to comment.