mirror of https://github.com/apache/lucene.git
Add back-compat indices for 8.11.0
This commit is contained in:
parent
02a63f688c
commit
7ce0cfa9c5
|
@ -376,7 +376,9 @@ public class TestBackwardsCompatibility extends LuceneTestCase {
|
|||
"8.10.0-cfs",
|
||||
"8.10.0-nocfs",
|
||||
"8.10.1-cfs",
|
||||
"8.10.1-nocfs"
|
||||
"8.10.1-nocfs",
|
||||
"8.11.0-cfs",
|
||||
"8.11.0-nocfs"
|
||||
};
|
||||
|
||||
public static String[] getOldNames() {
|
||||
|
@ -405,7 +407,8 @@ public class TestBackwardsCompatibility extends LuceneTestCase {
|
|||
"sorted.8.8.1",
|
||||
"sorted.8.8.2",
|
||||
"sorted.8.9.0",
|
||||
"sorted.8.10.1"
|
||||
"sorted.8.10.1",
|
||||
"sorted.8.11.0"
|
||||
};
|
||||
|
||||
public static String[] getOldSortedNames() {
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -183,12 +183,19 @@ public final class Version {
|
|||
@Deprecated public static final Version LUCENE_8_10_1 = new Version(8, 10, 1);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 8.10.0 release.
|
||||
* Match settings and bugs in Lucene's 8.11.0 release.
|
||||
*
|
||||
* @deprecated Use latest
|
||||
*/
|
||||
@Deprecated public static final Version LUCENE_8_11_0 = new Version(8, 11, 0);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 8.12.0 release.
|
||||
*
|
||||
* @deprecated Use latest
|
||||
*/
|
||||
@Deprecated public static final Version LUCENE_8_12_0 = new Version(8, 12, 0);
|
||||
|
||||
/** @deprecated (9.1.0) Use latest */
|
||||
@Deprecated public static final Version LUCENE_9_0_0 = new Version(9, 0, 0);
|
||||
|
||||
|
|
Loading…
Reference in New Issue