Skip to content

Commit f462873

Browse files
committed
Update README and miscellaneous files in preparation of 3.2.1.
1 parent ec5d51b commit f462873

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
cassandra-driver (3.2.1.rc.1)
4+
cassandra-driver (3.2.1)
55
ione (~> 1.2)
66

77
GEM

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,18 @@ __Note__: if you want to use compression you should also install [snappy](http:/
101101

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

107107
If you are upgrading to DataStax Enterprise, use the [Ruby DSE driver](https://github.com/datastax/ruby-dse-driver.git)
108108
for more features and better compatibility.
109109

110110
## What's new in v3.2
111-
This minor release adds support for MRI 2.4.x and also contains a few miscellaneous defect fixes.
111+
This minor release adds support for MRI 2.4.x and also contains a few miscellaneous defect fixes. It also removes
112+
support for Ruby versions prior to 2.2. This was already officially the case, but the minimum version limit is
113+
now enforced.
112114

113-
See the [changelog](https://github.com/datastax/ruby-driver/blob/master/CHANGELOG.md) for more information on all
115+
See the [changelog](https://github.com/datastax/ruby-driver/blob/v3.2.1/CHANGELOG.md) for more information on all
114116
changes in this version and past versions.
115117

116118
## What's new in v3.1
@@ -178,7 +180,7 @@ examples in the `features/` directory.
178180
## Running tests
179181

180182
If you don't feel like reading through the following instructions on how to run
181-
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).
183+
ruby-driver tests, feel free to [check out .travis.yml for the entire build code](https://github.com/datastax/ruby-driver/blob/v3.2.1/.travis.yml).
182184

183185
* Check out the driver codebase and install test dependencies:
184186

@@ -202,7 +204,7 @@ CASSANDRA_VERSION=2.1.12 bundle exec rake test # run both as well as integration
202204
## Changelog & versioning
203205

204206
Check out the [releases on GitHub](https://github.com/datastax/ruby-driver/releases) and
205-
[changelog](https://github.com/datastax/ruby-driver/blob/master/CHANGELOG.md). Version
207+
[changelog](https://github.com/datastax/ruby-driver/blob/v3.2.1/CHANGELOG.md). Version
206208
numbering follows the [semantic versioning](http://semver.org/) scheme.
207209

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

docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ links:
4242
href: https://github.com/datastax/ruby-driver/releases
4343
versions:
4444
- name: 3.2
45-
ref: v3.2.0
45+
ref: v3.2.1
4646
- name: 3.1
4747
ref: v3.1.0
4848
- name: 3.0

lib/cassandra/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
#++
1818

1919
module Cassandra
20-
VERSION = '3.2.1.rc.1'.freeze
20+
VERSION = '3.2.1'.freeze
2121
end

0 commit comments

Comments
 (0)