diff --git a/CHANGELOG.md b/CHANGELOG.md index a3c18f3f6..7fe88fdf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 1.1.1 + +Bug Fixes: + +* [RUBY-75] Raise error when Batch Statement executed against Cassandra < 2.0 +* [RUBY-76] `Cassandra::Future.all` doesn't return a future +* [RUBY-77] Re-introduce `Cassandra::Future.promise` + # 1.1.0 Features: diff --git a/Gemfile.lock b/Gemfile.lock index e611a0881..559cbe451 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - cassandra-driver (1.1.0) + cassandra-driver (1.1.1) ione (~> 1.2) GEM diff --git a/README.md b/README.md index 66d50141c..b656f8ead 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ __Note__: if you want to use compression you should also install [snappy](http:/ Some of the new features added to the driver have unfortunately led to changes in the original cql-rb API. In the examples directory, you can find [an example of how to wrap the ruby driver to achieve almost complete interface parity with cql-rb](https://github.com/datastax/ruby-driver/blob/master/examples/cql-rb-wrapper.rb) to assist you with gradual upgrade. -## What's new in v1.1.0 +## What's new in v1.1.1 Current release introduces the following new features: diff --git a/lib/cassandra/version.rb b/lib/cassandra/version.rb index 4d32fe5d1..792d4846e 100644 --- a/lib/cassandra/version.rb +++ b/lib/cassandra/version.rb @@ -17,5 +17,5 @@ #++ module Cassandra - VERSION = '1.1.0'.freeze + VERSION = '1.1.1'.freeze end