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
|
@ -282,6 +282,9 @@ Other
|
|||
* LUCENE-9822: Add assertion to PFOR exception encoding, documenting the BLOCK_SIZE assumption. (Greg Miller)
|
||||
|
||||
* 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 =======================
|
||||
|
||||
|
|
|
@ -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
|
||||
* 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.index.BaseLiveDocsFormatTestCase;
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* 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.index.BaseNormsFormatTestCase;
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* 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. */
|
||||
public class TestLucene90NormsFormatMergeInstance extends TestLucene90NormsFormat {
|
Loading…
Reference in New Issue