mirror of
https://github.com/apache/lucene.git
synced 2025-02-13 13:35:37 +00:00
Add next minor version 9.9.0
This commit is contained in:
parent
485b8729b8
commit
b3e67403aa
@ -36,7 +36,7 @@ apply from: file('gradle/globals.gradle')
|
|||||||
// Calculate project version:
|
// Calculate project version:
|
||||||
version = {
|
version = {
|
||||||
// Release manager: update base version here after release:
|
// Release manager: update base version here after release:
|
||||||
String baseVersion = '9.8.0'
|
String baseVersion = '9.9.0'
|
||||||
|
|
||||||
// On a release explicitly set release version in one go:
|
// On a release explicitly set release version in one go:
|
||||||
// -Dversion.release=x.y.z
|
// -Dversion.release=x.y.z
|
||||||
|
@ -3,6 +3,32 @@ Lucene Change Log
|
|||||||
For more information on past and future Lucene versions, please see:
|
For more information on past and future Lucene versions, please see:
|
||||||
http://s.apache.org/luceneversions
|
http://s.apache.org/luceneversions
|
||||||
|
|
||||||
|
======================== Lucene 9.9.0 =======================
|
||||||
|
|
||||||
|
API Changes
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
New Features
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
Improvements
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
Optimizations
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
Other
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
======================== Lucene 9.8.0 =======================
|
======================== Lucene 9.8.0 =======================
|
||||||
|
|
||||||
API Changes
|
API Changes
|
||||||
|
@ -269,11 +269,16 @@ public final class Version {
|
|||||||
@Deprecated public static final Version LUCENE_9_7_0 = new Version(9, 7, 0);
|
@Deprecated public static final Version LUCENE_9_7_0 = new Version(9, 7, 0);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Match settings and bugs in Lucene's 9.8.0 release.
|
* @deprecated (9.9.0) Use latest
|
||||||
|
*/
|
||||||
|
@Deprecated public static final Version LUCENE_9_8_0 = new Version(9, 8, 0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Match settings and bugs in Lucene's 9.9.0 release.
|
||||||
*
|
*
|
||||||
* <p>Use this to get the latest & greatest settings, bug fixes, etc, for Lucene.
|
* <p>Use this to get the latest & greatest settings, bug fixes, etc, for Lucene.
|
||||||
*/
|
*/
|
||||||
public static final Version LUCENE_9_8_0 = new Version(9, 8, 0);
|
public static final Version LUCENE_9_9_0 = new Version(9, 9, 0);
|
||||||
|
|
||||||
// To add a new version:
|
// To add a new version:
|
||||||
// * Only add above this comment
|
// * Only add above this comment
|
||||||
@ -289,7 +294,7 @@ public final class Version {
|
|||||||
* <b>re-test your entire application</b> to ensure it behaves as expected, as some defaults may
|
* <b>re-test your entire application</b> to ensure it behaves as expected, as some defaults may
|
||||||
* have changed and may break functionality in your application.
|
* have changed and may break functionality in your application.
|
||||||
*/
|
*/
|
||||||
public static final Version LATEST = LUCENE_9_8_0;
|
public static final Version LATEST = LUCENE_9_9_0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant for backwards compatibility.
|
* Constant for backwards compatibility.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user