Skip to content

Commit

Permalink
Add version 9.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpountz committed Mar 22, 2022
1 parent 0a3bad5 commit 28d3adc
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 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 @@ -31,9 +31,20 @@
*/
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.
*
Expand Down

0 comments on commit 28d3adc

Please sign in to comment.