Add version 9.1.0.

This commit is contained in:
Adrien Grand 2022-03-22 15:43:27 +01:00
parent 0a3bad5985
commit 28d3adcf69
1 changed files with 12 additions and 1 deletions

View File

@ -31,9 +31,20 @@ import java.util.jar.Manifest;
*/
public final class Version {
/** @deprecated (10.0.0) Use latest */
/**
* Match settings and bugs in Lucene's 9.0.0 release.
*
* @deprecated (9.1.0) Use latest
*/
@Deprecated public static final Version LUCENE_9_0_0 = new Version(9, 0, 0);
/**
* Match settings and bugs in Lucene's 9.1.0 release.
*
* @deprecated Use latest
*/
@Deprecated public static final Version LUCENE_9_1_0 = new Version(9, 1, 0);
/**
* Match settings and bugs in Lucene's 10.0.0 release.
*