diff --git a/CHANGES.txt b/CHANGES.txt
index 04fa0bf8bd..b33b2c3937 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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)
diff --git a/NEWS.txt b/NEWS.txt
index a127eadeec..ad22610707 100644
--- a/NEWS.txt
+++ b/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
=====
diff --git a/build.xml b/build.xml
index 10dbeccb71..b498d120cd 100644
--- a/build.xml
+++ b/build.xml
@@ -25,7 +25,7 @@
-
+
diff --git a/debian/changelog b/debian/changelog
index 9c6bfdc948..8e6b389ab4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+cassandra (1.1.5) unstable; urgency=low
+
+ * New release
+
+ -- Sylvain Lebresne Thu, 06 Sep 2012 08:53:50 +0200
+
cassandra (1.1.4) unstable; urgency=low
* New release
diff --git a/src/java/org/apache/cassandra/db/columniterator/ISSTableColumnIterator.java b/src/java/org/apache/cassandra/db/columniterator/ISSTableColumnIterator.java
index 4da4c0a65a..0b6a652139 100644
--- a/src/java/org/apache/cassandra/db/columniterator/ISSTableColumnIterator.java
+++ b/src/java/org/apache/cassandra/db/columniterator/ISSTableColumnIterator.java
@@ -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;