cassandra-driver 2.1.0-java → 2.1.3-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd542f743d228a5e67cba4fe1536b37a9de0cc83
4
- data.tar.gz: 92081e939206f9b8b5acb80b7014236fc9087218
3
+ metadata.gz: 345d45fb0e82aa5c218cbc343971f1f9067825e5
4
+ data.tar.gz: 64d3a7ca35bda6993cf5d220a53b6aa4cfbc8afc
5
5
  SHA512:
6
- metadata.gz: f48958fb98132a2f2fbde354680cdbce0e466b56cf2cbcd5aac666cd19897a0ff69f5ae943ddf80f54f7b7c59f8c2588e97f540089986b1603b43fbfe64e15b8
7
- data.tar.gz: 72cd3882ad8be07b18b647f64142682e67cde2238f3096582efd3f38daf76db7b36fe49798c4e746770a93776b606889511608d06f28871fb0006f8cb4d2066f
6
+ metadata.gz: 9dc189fe0f294bfddbdde8e6c38815a64292c365b92b367ab85861b22745aea870dfb360385489380ec3aec9ac187f1db3227f129adfd17c7a14912530c925ca
7
+ data.tar.gz: f10710d0fc9d98169b42ab50b6175b7ede11a317a17c5994526fd6db6130123b04405840cba3852b55fece86f876e2b27b555aab35ce55c5f5d7fc592e48f2de
data/README.md CHANGED
@@ -91,7 +91,7 @@ __Note__: if you want to use compression you should also install [snappy](http:/
91
91
 
92
92
  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) to assist you with gradual upgrade.
93
93
 
94
- ## What's new in v2.1.0
94
+ ## What's new in v2.1.3
95
95
 
96
96
  Features:
97
97
 
@@ -280,7 +280,7 @@ module Cassandra
280
280
  buf ||= Protocol::CqlByteBuffer.new
281
281
  buffer ||= Protocol::CqlByteBuffer.new
282
282
 
283
- if @protocol_version > 2
283
+ if @release_version > '2.1'
284
284
  Protocol::Coder.write_value_v3(buf, values[column_name], column.type)
285
285
  else
286
286
  Protocol::Coder.write_value_v1(buf, values[column_name], column.type)
@@ -319,6 +319,7 @@ module Cassandra
319
319
  end
320
320
  end
321
321
 
322
+ # @private
322
323
  NULL_BYTE = "\x00".freeze
323
324
 
324
325
  attr_reader :partition_key, :clustering_columns, :clustering_order
@@ -17,5 +17,5 @@
17
17
  #++
18
18
 
19
19
  module Cassandra
20
- VERSION = '2.1.0'.freeze
20
+ VERSION = '2.1.3'.freeze
21
21
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cassandra-driver
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.3
5
5
  platform: java
6
6
  authors:
7
7
  - Theo Hultberg
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-02-23 00:00:00.000000000 Z
12
+ date: 2015-03-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ione