Skip to content

Commit

Permalink
Prep for 3.2.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mersault committed Oct 23, 2020
1 parent 2c984c4 commit d9579bd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
cassandra-driver (3.2.5.rc1)
cassandra-driver (3.2.5)
ione (~> 1.2)

GEM
Expand Down Expand Up @@ -124,4 +124,4 @@ DEPENDENCIES
yard

BUNDLED WITH
1.16.2
1.17.3
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down Expand Up @@ -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:

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/cassandra/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
#++

module Cassandra
VERSION = '3.2.5.rc1'.freeze
VERSION = '3.2.5'.freeze
end

0 comments on commit d9579bd

Please sign in to comment.