Skip to content

Commit d9579bd

Browse files
author
mersault
committed
Prep for 3.2.5 release
1 parent 2c984c4 commit d9579bd

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 3.2.5
2+
Bug Fixes:
3+
* [RUBY-293](https://datastax-oss.atlassian.net/browse/RUBY-293) Infinite loop when connecting with allow_beta_protocol
4+
15
# 3.2.5.rc1
26
Bug Fixes:
37
* [RUBY-332](https://datastax-oss.atlassian.net/browse/RUBY-332) Add support for duration type

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
cassandra-driver (3.2.5.rc1)
4+
cassandra-driver (3.2.5)
55
ione (~> 1.2)
66

77
GEM
@@ -124,4 +124,4 @@ DEPENDENCIES
124124
yard
125125

126126
BUNDLED WITH
127-
1.16.2
127+
1.17.3

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ __Note__: if you want to use compression you should also install [snappy](http:/
9999

100100
Some of the new features added to the driver have unfortunately led to changes in the original cql-rb API.
101101
In the examples directory, you can find [an example of how to wrap the ruby driver to achieve almost complete
102-
interface parity with cql-rb](https://github.com/datastax/ruby-driver/blob/v3.2.4/examples/cql-rb-wrapper.rb)
102+
interface parity with cql-rb](https://github.com/datastax/ruby-driver/blob/v3.2.5/examples/cql-rb-wrapper.rb)
103103
to assist you with gradual upgrade.
104104

105105
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
109109
support for Ruby versions prior to 2.2. This was already officially the case, but the minimum version limit is
110110
now enforced.
111111

112-
See the [changelog](https://github.com/datastax/ruby-driver/blob/v3.2.4/CHANGELOG.md) for more information on all
112+
See the [changelog](https://github.com/datastax/ruby-driver/blob/v3.2.5/CHANGELOG.md) for more information on all
113113
changes in this version and past versions.
114114

115115
## What's new in v3.1
@@ -177,7 +177,7 @@ examples in the `features/` directory.
177177
## Running tests
178178

179179
If you don't feel like reading through the following instructions on how to run
180-
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).
180+
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).
181181

182182
* Check out the driver codebase and install test dependencies:
183183

@@ -201,7 +201,7 @@ CASSANDRA_VERSION=2.1.12 bundle exec rake test # run both as well as integration
201201
## Changelog & versioning
202202

203203
Check out the [releases on GitHub](https://github.com/datastax/ruby-driver/releases) and
204-
[changelog](https://github.com/datastax/ruby-driver/blob/v3.2.4/CHANGELOG.md). Version
204+
[changelog](https://github.com/datastax/ruby-driver/blob/v3.2.5/CHANGELOG.md). Version
205205
numbering follows the [semantic versioning](http://semver.org/) scheme.
206206

207207
Private and experimental APIs, defined as whatever is not in the

lib/cassandra/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
#++
1818

1919
module Cassandra
20-
VERSION = '3.2.5.rc1'.freeze
20+
VERSION = '3.2.5'.freeze
2121
end

0 commit comments

Comments
 (0)