mirror of https://github.com/apache/cassandra
Update version, news, license, ... for 1.1.5 release
This commit is contained in:
parent
2cd73633bd
commit
acaa524655
|
|
@ -9,6 +9,11 @@
|
|||
* Change nodetool setcachecapcity to manipulate global caches (CASSANDRA-4563)
|
||||
* (cql3) fix setting compaction strategy (CASSANDRA-4597)
|
||||
* fix broken system.schema_* timestamps on system startup (CASSANDRA-4561)
|
||||
* fix wrong skip of cache saving (CASSANDRA-4533)
|
||||
* Avoid NPE when lost+found is in data dir (CASSANDRA-4572)
|
||||
* Respect five-minute flush moratorium after initial CL replay (CASSANDRA-4474)
|
||||
* Adds ntp as recommended in debian packaging (CASSANDRA-4606)
|
||||
* Configurable transport in CF Record{Reader|Writer} (CASSANDRA-4558)
|
||||
Merged from 1.0:
|
||||
* increase Xss to 160k to accomodate latest 1.6 JVMs (CASSANDRA-4602)
|
||||
* fix toString of hint destination tokens (CASSANDRA-4568)
|
||||
|
|
|
|||
18
NEWS.txt
18
NEWS.txt
|
|
@ -9,6 +9,24 @@ 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.5
|
||||
=====
|
||||
|
||||
Upgrading
|
||||
---------
|
||||
- Nothing specific to this release, but please see 1.1 if you are upgrading
|
||||
from a previous version.
|
||||
|
||||
|
||||
1.1.4
|
||||
=====
|
||||
|
||||
Upgrading
|
||||
---------
|
||||
- Nothing specific to this release, but please see 1.1 if you are upgrading
|
||||
from a previous version.
|
||||
|
||||
|
||||
1.1.3
|
||||
=====
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<property name="debuglevel" value="source,lines,vars"/>
|
||||
|
||||
<!-- default version and SCM information -->
|
||||
<property name="base.version" value="1.1.4"/>
|
||||
<property name="base.version" value="1.1.5"/>
|
||||
<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.5) unstable; urgency=low
|
||||
|
||||
* New release
|
||||
|
||||
-- Sylvain Lebresne <slebresne@apache.org> Thu, 06 Sep 2012 08:53:50 +0200
|
||||
|
||||
cassandra (1.1.4) unstable; urgency=low
|
||||
|
||||
* New release
|
||||
|
|
|
|||
|
|
@ -1,3 +1,21 @@
|
|||
/*
|
||||
* 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 org.apache.cassandra.io.sstable.SSTableReader;
|
||||
|
|
|
|||
Loading…
Reference in New Issue