mirror of https://github.com/apache/lucene.git
LUCENE-9705: Final clean-up and entry in CHANGES.txt (#59)
This commit is contained in:
parent
010e3a1ba9
commit
67a0bd4b6d
|
@ -283,6 +283,9 @@ Other
|
||||||
|
|
||||||
* LUCENE-9883: Turn on ecj missingEnumCaseDespiteDefault setting. (Zach Chen)
|
* LUCENE-9883: Turn on ecj missingEnumCaseDespiteDefault setting. (Zach Chen)
|
||||||
|
|
||||||
|
* LUCENE-9705: Make new versions of all index formats for the Lucene90 codec and move
|
||||||
|
the existing ones to the backwards codecs. (Julie Tibshirani, Ignacio Vera)
|
||||||
|
|
||||||
======================= Lucene 8.9.0 =======================
|
======================= Lucene 8.9.0 =======================
|
||||||
|
|
||||||
API Changes
|
API Changes
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
/*
|
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
|
||||||
* this work for additional information regarding copyright ownership.
|
|
||||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
||||||
* (the "License"); you may not use this file except in compliance with
|
|
||||||
* the License. You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Components from the Lucene 8.0 index format See {@link org.apache.lucene.codecs.lucene90} for an
|
|
||||||
* overview of the index format.
|
|
||||||
*/
|
|
||||||
package org.apache.lucene.codecs.lucene80;
|
|
|
@ -14,7 +14,7 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package org.apache.lucene.codecs.lucene50;
|
package org.apache.lucene.codecs.lucene90;
|
||||||
|
|
||||||
import org.apache.lucene.codecs.Codec;
|
import org.apache.lucene.codecs.Codec;
|
||||||
import org.apache.lucene.index.BaseLiveDocsFormatTestCase;
|
import org.apache.lucene.index.BaseLiveDocsFormatTestCase;
|
|
@ -14,7 +14,7 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package org.apache.lucene.codecs.lucene80;
|
package org.apache.lucene.codecs.lucene90;
|
||||||
|
|
||||||
import org.apache.lucene.codecs.Codec;
|
import org.apache.lucene.codecs.Codec;
|
||||||
import org.apache.lucene.index.BaseNormsFormatTestCase;
|
import org.apache.lucene.index.BaseNormsFormatTestCase;
|
|
@ -14,7 +14,7 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package org.apache.lucene.codecs.lucene80;
|
package org.apache.lucene.codecs.lucene90;
|
||||||
|
|
||||||
/** Test the merge instance of the Lucene90 norms format. */
|
/** Test the merge instance of the Lucene90 norms format. */
|
||||||
public class TestLucene90NormsFormatMergeInstance extends TestLucene90NormsFormat {
|
public class TestLucene90NormsFormatMergeInstance extends TestLucene90NormsFormat {
|
Loading…
Reference in New Issue