Skip to content

Commit

Permalink
Prep for 3.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
stamhankar999 committed Aug 22, 2018
1 parent c028d4c commit 91d2607
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 14 deletions.
12 changes: 5 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# master
# 3.2.3
Bug Fixes:
* [RUBY-322](https://datastax-oss.atlassian.net/browse/RUBY-322) Decimals with zero scale aren't parsed properly.
* [RUBY-325](https://datastax-oss.atlassian.net/browse/RUBY-325) Upgrade Yard to resolve security vulnerability

* [RUBY-323](https://datastax-oss.atlassian.net/browse/RUBY-323) Travis can time out due to unintialized instance variable warning in CqlProtocolHandler. Thanks @baldarn for the contribution!
* [RUBY-324](https://datastax-oss.atlassian.net/browse/RUBY-324) CQL generation does not handle nested collections properly. Thanks @mnin for the contribution!
* [RUBY-325](https://datastax-oss.atlassian.net/browse/RUBY-325) Upgrade Yard to resolve security vulnerability.
* [RUBY-326](https://datastax-oss.atlassian.net/browse/RUBY-326) CQL generation should include ascending clustering order specification. Thanks @mnin for the contribution!

# 3.2.2
Bug Fixes:
* [RUBY-319](https://datastax-oss.atlassian.net/browse/RUBY-319) Support reading decimals in scientific notation with positive exponent.
* [RUBY-320](https://datastax-oss.atlassian.net/browse/RUBY-320) Cassandra::Future.all([]).join hangs forever

# 3.2.1

Bug Fixes:
* [RUBY-315](https://datastax-oss.atlassian.net/browse/RUBY-315) Bump rubocop version to address security vulnerability; disallow Ruby versions prior to 2.2.
* [RUBY-316](https://datastax-oss.atlassian.net/browse/RUBY-316) Memory leak in ruby driver due to request timers not being cleaned up when extremely large request timeout is set.
* [RUBY-317](https://datastax-oss.atlassian.net/browse/RUBY-317) Upgrade Yard to address security vulnerability.
* [RUBY-318](https://datastax-oss.atlassian.net/browse/RUBY-318) Fix Travis config to work with JRuby on new image.

# 3.2.0

Features:
* [RUBY-294](https://datastax-oss.atlassian.net/browse/RUBY-294) Support MRI 2.4.x. Thanks, @lautis, for this contribution!

Expand Down Expand Up @@ -50,12 +50,10 @@ Bug Fixes:
* [RUBY-264](https://datastax-oss.atlassian.net/browse/RUBY-264) Table erroneously reported as using compact storage.

# 3.0.3

Bug Fixes:
* [RUBY-241](https://datastax-oss.atlassian.net/browse/RUBY-241) Materialied views sometimes have nil ref to base-table.

# 3.0.2

Bug Fixes:
* [RUBY-219](https://datastax-oss.atlassian.net/browse/RUBY-219) Sometimes get stack trace in metadata.rb due to failure in SortedSet initialization.
* [RUBY-220](https://datastax-oss.atlassian.net/browse/RUBY-220) Improve support for custom types.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
cassandra-driver (3.2.3.rc.1)
cassandra-driver (3.2.3)
ione (~> 1.2)

GEM
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,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/master/examples/cql-rb-wrapper.rb)
interface parity with cql-rb](https://github.com/datastax/ruby-driver/blob/v3.2.3/examples/cql-rb-wrapper.rb)
to assist you with gradual upgrade.

If you are upgrading to DataStax Enterprise, use the [Ruby DSE driver](https://github.com/datastax/ruby-dse-driver.git)
Expand All @@ -112,7 +112,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/master/CHANGELOG.md) for more information on all
See the [changelog](https://github.com/datastax/ruby-driver/blob/v3.2.3/CHANGELOG.md) for more information on all
changes in this version and past versions.

## What's new in v3.1
Expand Down Expand Up @@ -180,7 +180,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/master/.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.3/.travis.yml).

* Check out the driver codebase and install test dependencies:

Expand All @@ -204,7 +204,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/master/CHANGELOG.md). Version
[changelog](https://github.com/datastax/ruby-driver/blob/v3.2.3/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 docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ links:
href: https://github.com/datastax/ruby-driver/releases
versions:
- name: 3.2
ref: v3.2.2
ref: v3.2.3
- name: 3.1
ref: v3.1.0
- name: 3.0
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.3.rc.1'.freeze
VERSION = '3.2.3'.freeze
end

0 comments on commit 91d2607

Please sign in to comment.