LUCENE-9705: Final clean-up and entry in CHANGES.txt (#59)

This commit is contained in:
Ignacio Vera 2021-04-04 11:30:47 +02:00 committed by GitHub
parent 010e3a1ba9
commit 67a0bd4b6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 25 deletions

View File

@ -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

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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 {