diff --git a/Gemfile.lock b/Gemfile.lock index bfc005571..5049a337b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - cassandra-driver (3.1.1.rc.1) + cassandra-driver (3.2.0) ione (~> 1.2) GEM diff --git a/README.md b/README.md index f1ac9e721..a5e78ebe2 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,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) +interface parity with cql-rb](https://github.com/datastax/ruby-driver/blob/v3.2.0/examples/cql-rb-wrapper.rb) to assist you with gradual upgrade. If you are upgrading to DataStax Enterprise, use the [Ruby DSE driver](https://github.com/datastax/ruby-dse-driver.git) @@ -109,7 +109,7 @@ for more features and better compatibility. ## What's new in v3.2 This minor release adds support for MRI 2.4.x and also contains a few miscellaneous defect fixes. -See the [changelog](https://github.com/datastax/ruby-driver/blob/master/CHANGELOG.md) for more information on all +See the [changelog](https://github.com/datastax/ruby-driver/blob/v3.2.0/CHANGELOG.md) for more information on all changes in this version and past versions. ## What's new in v3.1 @@ -177,7 +177,7 @@ examples in the `features/` directory. ## Running tests If you don't feel like reading through the following instructions on how to run -ruby-driver tests, feel free to [check out .travis.yml for the entire build code](https://github.com/datastax/ruby-driver/blob/master/.travis.yml). +ruby-driver tests, feel free to [check out .travis.yml for the entire build code](https://github.com/datastax/ruby-driver/blob/v3.2.0/.travis.yml). * Check out the driver codebase and install test dependencies: @@ -201,7 +201,7 @@ CASSANDRA_VERSION=2.1.12 bundle exec rake test # run both as well as integration ## Changelog & versioning Check out the [releases on GitHub](https://github.com/datastax/ruby-driver/releases) and -[changelog](https://github.com/datastax/ruby-driver/blob/master/CHANGELOG.md). Version +[changelog](https://github.com/datastax/ruby-driver/blob/v3.2.0/CHANGELOG.md). Version numbering follows the [semantic versioning](http://semver.org/) scheme. Private and experimental APIs, defined as whatever is not in the diff --git a/docs.yaml b/docs.yaml index ca70a3536..29abb7c00 100644 --- a/docs.yaml +++ b/docs.yaml @@ -41,6 +41,8 @@ links: - title: Releases href: https://github.com/datastax/ruby-driver/releases versions: + - name: 3.2 + ref: v3.2.0 - name: 3.1 ref: v3.1.0 - name: 3.0 diff --git a/lib/cassandra/version.rb b/lib/cassandra/version.rb index ac015bd48..f7cecaf25 100644 --- a/lib/cassandra/version.rb +++ b/lib/cassandra/version.rb @@ -17,5 +17,5 @@ #++ module Cassandra - VERSION = '3.1.1.rc.1'.freeze + VERSION = '3.2.0'.freeze end