From d9579bd91f569f9bbe921bc6e760a5ab259d48f3 Mon Sep 17 00:00:00 2001 From: mersault Date: Thu, 22 Oct 2020 22:38:39 -0500 Subject: [PATCH] Prep for 3.2.5 release --- CHANGELOG.md | 4 ++++ Gemfile.lock | 4 ++-- README.md | 8 ++++---- lib/cassandra/version.rb | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6f0e51b9..321656d70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 3.2.5 +Bug Fixes: +* [RUBY-293](https://datastax-oss.atlassian.net/browse/RUBY-293) Infinite loop when connecting with allow_beta_protocol + # 3.2.5.rc1 Bug Fixes: * [RUBY-332](https://datastax-oss.atlassian.net/browse/RUBY-332) Add support for duration type diff --git a/Gemfile.lock b/Gemfile.lock index cf94529df..62622f396 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - cassandra-driver (3.2.5.rc1) + cassandra-driver (3.2.5) ione (~> 1.2) GEM @@ -124,4 +124,4 @@ DEPENDENCIES yard BUNDLED WITH - 1.16.2 + 1.17.3 diff --git a/README.md b/README.md index 46549d679..76072e0de 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,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/v3.2.4/examples/cql-rb-wrapper.rb) +interface parity with cql-rb](https://github.com/datastax/ruby-driver/blob/v3.2.5/examples/cql-rb-wrapper.rb) to assist you with gradual upgrade. If you are upgrading to DataStax Enterprise, use the [Ruby DSE driver](https://docs.datastax.com/en/developer/ruby-driver-dse/2.1/) for more features and better compatibility. @@ -109,7 +109,7 @@ This minor release adds support for MRI 2.4.x and also contains a few miscellane support for Ruby versions prior to 2.2. This was already officially the case, but the minimum version limit is now enforced. -See the [changelog](https://github.com/datastax/ruby-driver/blob/v3.2.4/CHANGELOG.md) for more information on all +See the [changelog](https://github.com/datastax/ruby-driver/blob/v3.2.5/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/v3.2.4/.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.5/.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/v3.2.4/CHANGELOG.md). Version +[changelog](https://github.com/datastax/ruby-driver/blob/v3.2.5/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/lib/cassandra/version.rb b/lib/cassandra/version.rb index 1b0b404d4..ed8d2183c 100644 --- a/lib/cassandra/version.rb +++ b/lib/cassandra/version.rb @@ -17,5 +17,5 @@ #++ module Cassandra - VERSION = '3.2.5.rc1'.freeze + VERSION = '3.2.5'.freeze end