mirror of https://github.com/apache/cassandra
Update version, changes, news and licenses for 1.1.7 release
This commit is contained in:
parent
763305b49e
commit
2f4b6d8c61
|
|
@ -22,6 +22,12 @@
|
|||
* Allow static CF definition with compact storage (CASSANDRA-4910)
|
||||
* Fix endless loop/compaction of schema_* CFs due to broken timestamps (CASSANDRA-4880)
|
||||
* Fix 'wrong class type' assertion in CounterColumn (CASSANDRA-4976)
|
||||
* Fix cqlsh timestamp formatting of timezone info (CASSANDRA-4746)
|
||||
* Fix assertion failure with leveled compaction (CASSANDRA-4799)
|
||||
* Check for null end_token in get_range_slice (CASSANDRA-4804)
|
||||
* Remove all remnants of removed nodes (CASSANDRA-4840)
|
||||
* Add aut-reloading of the log4j file in debian package (CASSANDRA-4855)
|
||||
* Fix estimated row cache entry size (CASSANDRA-4860)
|
||||
|
||||
|
||||
1.1.6
|
||||
|
|
|
|||
9
NEWS.txt
9
NEWS.txt
|
|
@ -9,6 +9,15 @@ upgrade, just in case you need to roll back to the previous version.
|
|||
by version X, but the inverse is not necessarily the case.)
|
||||
|
||||
|
||||
1.1.7
|
||||
=====
|
||||
|
||||
Upgrading
|
||||
---------
|
||||
- Nothing specific to this release, but please see the previous instruction
|
||||
if you are not upgrading from 1.1.7.
|
||||
|
||||
|
||||
1.1.6
|
||||
=====
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<property name="debuglevel" value="source,lines,vars"/>
|
||||
|
||||
<!-- default version and SCM information -->
|
||||
<property name="base.version" value="1.1.6"/>
|
||||
<property name="base.version" value="1.1.7"/>
|
||||
<property name="scm.connection" value="scm:git://git.apache.org/cassandra.git"/>
|
||||
<property name="scm.developerConnection" value="scm:git://git.apache.org/cassandra.git"/>
|
||||
<property name="scm.url" value="http://git-wip-us.apache.org/repos/asf?p=cassandra.git;a=tree"/>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
cassandra (1.1.7) unstable; urgency=low
|
||||
|
||||
* New release
|
||||
|
||||
-- Sylvain Lebresne <slebresne@apache.org> Tue, 27 Nov 2012 09:32:16 +0100
|
||||
|
||||
cassandra (1.1.6) unstable; urgency=low
|
||||
|
||||
* New release
|
||||
|
|
|
|||
|
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
package org.apache.cassandra.db.columniterator;
|
||||
|
||||
public interface IColumnIteratorFactory
|
||||
|
|
|
|||
|
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
package org.apache.cassandra.db.columniterator;
|
||||
|
||||
import com.google.common.collect.AbstractIterator;
|
||||
|
|
|
|||
Loading…
Reference in New Issue