mirror of https://github.com/apache/lucene.git
add 4.10.1 bwc index
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1628028 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7ec55f26ea
commit
70b46378d3
|
@ -250,7 +250,9 @@ public class TestBackwardsCompatibility extends LuceneTestCase {
|
|||
"4.9.1-cfs",
|
||||
"4.9.1-nocfs",
|
||||
"4.10.0-cfs",
|
||||
"4.10.0-nocfs"
|
||||
"4.10.0-nocfs",
|
||||
"4.10.1-cfs",
|
||||
"4.10.1-nocfs"
|
||||
};
|
||||
|
||||
final String[] unsupportedNames = {
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -166,12 +166,19 @@ public final class Version {
|
|||
public static final Version LUCENE_4_9_0 = new Version(4, 9, 0);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 4.10 release.
|
||||
* Match settings and bugs in Lucene's 4.10.0 release.
|
||||
* @deprecated (5.0) Use latest
|
||||
*/
|
||||
@Deprecated
|
||||
public static final Version LUCENE_4_10_0 = new Version(4, 10, 0);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 4.10.1 release.
|
||||
* @deprecated (5.0) Use latest
|
||||
*/
|
||||
@Deprecated
|
||||
public static final Version LUCENE_4_10_1 = new Version(4, 10, 1);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 5.0 release.
|
||||
* @deprecated (5.0) Use latest
|
||||
|
|
Loading…
Reference in New Issue