Update version, changes, news and licenses for 1.1.7 release
Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/2f4b6d8c Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/2f4b6d8c Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/2f4b6d8c Branch: refs/heads/cassandra-1.2 Commit: 2f4b6d8c61d81ac4c878a4399a3634221deeb075 Parents: 763305b Author: Sylvain Lebresne <[email protected]> Authored: Tue Nov 27 09:34:48 2012 +0100 Committer: Sylvain Lebresne <[email protected]> Committed: Tue Nov 27 09:34:48 2012 +0100 ---------------------------------------------------------------------- CHANGES.txt | 6 +++++ NEWS.txt | 9 ++++++++ build.xml | 2 +- debian/changelog | 6 +++++ .../db/columniterator/IColumnIteratorFactory.java | 17 +++++++++++++++ .../db/columniterator/LazyColumnIterator.java | 17 +++++++++++++++ 6 files changed, 56 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/2f4b6d8c/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 7c653d0..6401cd0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 http://git-wip-us.apache.org/repos/asf/cassandra/blob/2f4b6d8c/NEWS.txt ---------------------------------------------------------------------- diff --git a/NEWS.txt b/NEWS.txt index 667a055..0431a3e 100644 --- a/NEWS.txt +++ b/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 ===== http://git-wip-us.apache.org/repos/asf/cassandra/blob/2f4b6d8c/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 551e1bd..8ac0cca 100644 --- a/build.xml +++ b/build.xml @@ -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"/> http://git-wip-us.apache.org/repos/asf/cassandra/blob/2f4b6d8c/debian/changelog ---------------------------------------------------------------------- diff --git a/debian/changelog b/debian/changelog index 8503c52..b2b17b1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cassandra (1.1.7) unstable; urgency=low + + * New release + + -- Sylvain Lebresne <[email protected]> Tue, 27 Nov 2012 09:32:16 +0100 + cassandra (1.1.6) unstable; urgency=low * New release http://git-wip-us.apache.org/repos/asf/cassandra/blob/2f4b6d8c/src/java/org/apache/cassandra/db/columniterator/IColumnIteratorFactory.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/db/columniterator/IColumnIteratorFactory.java b/src/java/org/apache/cassandra/db/columniterator/IColumnIteratorFactory.java index c9ce857..8e466e6 100644 --- a/src/java/org/apache/cassandra/db/columniterator/IColumnIteratorFactory.java +++ b/src/java/org/apache/cassandra/db/columniterator/IColumnIteratorFactory.java @@ -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 http://git-wip-us.apache.org/repos/asf/cassandra/blob/2f4b6d8c/src/java/org/apache/cassandra/db/columniterator/LazyColumnIterator.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/db/columniterator/LazyColumnIterator.java b/src/java/org/apache/cassandra/db/columniterator/LazyColumnIterator.java index 486836d..19e5091 100644 --- a/src/java/org/apache/cassandra/db/columniterator/LazyColumnIterator.java +++ b/src/java/org/apache/cassandra/db/columniterator/LazyColumnIterator.java @@ -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;
