Skip to content

Commit 1e54ee1

Browse files
committed
Prep for 3.1.0 release.
1 parent 16d32dc commit 1e54ee1

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# master
1+
# 3.1.0
22
Features:
33
* Do not mark a host as down if there are active connections.
44
* Update Keyspace metadata to include collection of indexes defined in the keyspace.
5-
* Update Table metadata to include trigger-collection and view-collection metadata.
5+
* Update Table metadata to include trigger-collection and view-collection metadata. Also include the cdc attribute,
6+
introduced in C* 3.8. More details [here.](http://cassandra.apache.org/doc/latest/operating/cdc.html)
67
* Added execution profiles to encapsulate a group of request execution options.
7-
* Added support for v5 beta protocol.
8+
* Added support for v5 beta protocol. This will always be a "work-in-progress" since the protocol is under
9+
development and the driver is not necessarily updated to the latest revision of it.
810
* Make prepared statement cache not be scoped by host and optimistically execute prepared statements on hosts where
911
we are not sure the statement is already prepared. The motivation is that in the steady state, all nodes have
1012
prepared statements already, so there is no need to prepare statements before executing them. If the guess is wrong,

Gemfile.lock

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

77
GEM

README.md

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

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

104104
## What's new in v3.1
@@ -110,7 +110,7 @@ Execution profiles allow you to group various execution options into a 'profile'
110110
profile at execution time. Get the scoop
111111
[here](http://docs.datastax.com/en/developer/ruby-driver/3.1/features/basics/execution_profiles).
112112

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

116116
## What's new in v3.0
@@ -179,7 +179,7 @@ examples in the `features/` directory.
179179
## Running tests
180180

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

184184
* Check out the driver codebase and install test dependencies:
185185

@@ -203,7 +203,7 @@ CASSANDRA_VERSION=2.0.17 bundle exec rake test # run both as well as integration
203203
## Changelog & versioning
204204

205205
Check out the [releases on GitHub](https://github.com/datastax/ruby-driver/releases) and
206-
[changelog](https://github.com/datastax/ruby-driver/blob/master/CHANGELOG.md). Version
206+
[changelog](https://github.com/datastax/ruby-driver/blob/v3.1.0/CHANGELOG.md). Version
207207
numbering follows the [semantic versioning](http://semver.org/) scheme.
208208

209209
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.1.0.rc.1'.freeze
20+
VERSION = '3.1.0'.freeze
2121
end

0 commit comments

Comments
 (0)