Skip to content

Commit

Permalink
Merge pull request #27 from unbxd/unx_6_6_10
Browse files Browse the repository at this point in the history
chore: bump version
  • Loading branch information
apoorvprecisely authored Aug 11, 2021
2 parents f84e530 + d383223 commit c663c8e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
ECR_URL: ${{ secrets.US_EAST_1_ECR_URL }}
LATEST_TAG: latest
# this needs to be updated on every release
SOLR_CURR_VERSION: 6.6.10
SOLR_CURR_VERSION: 6.6.11
steps:
- uses: actions/checkout@v2

Expand Down
11 changes: 10 additions & 1 deletion lucene/core/src/java/org/apache/lucene/util/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,17 @@ public final class Version {
* Use this to get the latest & greatest settings, bug
* fixes, etc, for Lucene.
*/
@Deprecated
public static final Version LUCENE_6_6_10 = new Version(6, 6, 10);

/**
* Match settings and bugs in Lucene's 6.6.11 release.
* <p>
* Use this to get the latest &amp; greatest settings, bug
* fixes, etc, for Lucene.
*/
public static final Version LUCENE_6_6_11 = new Version(6, 6, 11);

// To add a new version:
// * Only add above this comment
// * If the new version is the newest, change LATEST below and deprecate the previous LATEST
Expand All @@ -310,7 +319,7 @@ public final class Version {
* some defaults may have changed and may break functionality
* in your application.
*/
public static final Version LATEST = LUCENE_6_6_10;
public static final Version LATEST = LUCENE_6_6_11;

/**
* Constant for backwards compatibility.
Expand Down
2 changes: 1 addition & 1 deletion lucene/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# RELEASE MANAGER must change this file after creating a release and
# enter new base version (format "x.y.z", no prefix/appendix):
version.base=6.6.10
version.base=6.6.11

# Other version property defaults, don't change:
version.suffix=SNAPSHOT
Expand Down

0 comments on commit c663c8e

Please sign in to comment.