Skip to content

Commit bffd5e4

Browse files
committed
Update version in docs
1 parent 425d2ea commit bffd5e4

File tree

39 files changed

+259
-259
lines changed

39 files changed

+259
-259
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ not yet have been released. You can find the documentation for the latest
88
version through the [Java driver
99
docs](http://docs.datastax.com/en/developer/java-driver/latest/index.html) or via the release tags,
1010
[e.g.
11-
3.4.0](https://github.com/datastax/java-driver/tree/3.4.0).*
11+
3.5.0](https://github.com/datastax/java-driver/tree/3.5.0).*
1212

1313
_**Feeback requested!** Help us focus our efforts, provide your input on
1414
the [Platform and Runtime Survey](http://goo.gl/forms/qwUE6qnL7U) (we kept it short)._
@@ -55,12 +55,12 @@ The driver contains the following modules:
5555
driver releases and important announcements (low frequency).
5656
[@DataStaxEng](https://twitter.com/datastaxeng) has more news including
5757
other drivers, Cassandra, and DSE.
58-
- DOCS: the [manual](http://docs.datastax.com/en/developer/java-driver/3.3/manual/) has quick
58+
- DOCS: the [manual](http://docs.datastax.com/en/developer/java-driver/3.5/manual/) has quick
5959
start material and technical details about the driver and its features.
60-
- API: http://www.datastax.com/drivers/java/3.3
60+
- API: http://www.datastax.com/drivers/java/3.5
6161
- GITHUB REPOSITORY: https://github.com/datastax/java-driver
6262
- [changelog](changelog/)
63-
- [binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.4.0.tar.gz)
63+
- [binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.5.0.tar.gz)
6464

6565
## Getting the driver
6666

@@ -72,7 +72,7 @@ using DataStax Enterprise, install the [DataStax Enterprise Java driver][dse-dri
7272
<dependency>
7373
<groupId>com.datastax.cassandra</groupId>
7474
<artifactId>cassandra-driver-core</artifactId>
75-
<version>3.4.0</version>
75+
<version>3.5.0</version>
7676
</dependency>
7777
```
7878

@@ -82,7 +82,7 @@ Note that the object mapper is published as a separate artifact:
8282
<dependency>
8383
<groupId>com.datastax.cassandra</groupId>
8484
<artifactId>cassandra-driver-mapping</artifactId>
85-
<version>3.4.0</version>
85+
<version>3.5.0</version>
8686
</dependency>
8787
```
8888

@@ -92,7 +92,7 @@ The 'extras' module is also published as a separate artifact:
9292
<dependency>
9393
<groupId>com.datastax.cassandra</groupId>
9494
<artifactId>cassandra-driver-extras</artifactId>
95-
<version>3.4.0</version>
95+
<version>3.5.0</version>
9696
</dependency>
9797
```
9898

@@ -101,12 +101,12 @@ We also provide a [shaded JAR](manual/shaded_jar/)
101101
to avoid the explicit dependency to Netty.
102102

103103
If you can't use a dependency management tool, a
104-
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.4.0.tar.gz)
104+
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.5.0.tar.gz)
105105
is available for download.
106106

107107
## Compatibility
108108

109-
The Java client driver 3.4.0 ([branch 3.x](https://github.com/datastax/java-driver/tree/3.x)) is compatible with Apache
109+
The Java client driver 3.5.0 ([branch 3.x](https://github.com/datastax/java-driver/tree/3.x)) is compatible with Apache
110110
Cassandra 2.1, 2.2 and 3.0+ (see [this page](http://docs.datastax.com/en/developer/java-driver/latest/manual/native_protocol/) for
111111
the most up-to-date compatibility information).
112112

changelog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Changelog
22

3-
### 3.5.0 (In progress)
3+
### 3.5.0
44

55
- [improvement] JAVA-1448: TokenAwarePolicy should respect child policy ordering.
66
- [bug] JAVA-1751: Include defaultTimestamp length in encodedSize for protocol version >= 3.

faq/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ row.getBool(0); // this is equivalent row.getBool("applied")
3535

3636
Note that, unlike manual inspection, `wasApplied` does not consume the first row.
3737

38-
[wasApplied]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/ResultSet.html#wasApplied--
38+
[wasApplied]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/ResultSet.html#wasApplied--
3939

4040

4141
### What is a parameterized statement and how can I use it?
@@ -289,7 +289,7 @@ version is available, you may want to reach out to the maintainer of that tool t
289289
an update with compatibility to this driver version.
290290

291291

292-
[Blobs.java]: https://github.com/datastax/java-driver/tree/3.4.0/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
292+
[Blobs.java]: https://github.com/datastax/java-driver/tree/3.5.0/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
293293
[CASSANDRA-7304]: https://issues.apache.org/jira/browse/CASSANDRA-7304
294294
[Parameters and Binding]: ../manual/statements/prepared/#parameters-and-binding
295295
[Mapper options]: ../manual/object_mapper/using/#mapper-options

faq/osgi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ it is also normal to see the following log lines when starting the driver:
157157
[BND]:http://bnd.bndtools.org/
158158
[Maven bundle plugin]:https://cwiki.apache.org/confluence/display/FELIX/Apache+Felix+Maven+Bundle+Plugin+%28BND%29
159159
[OSGi examples repository]:https://github.com/datastax/java-driver-examples-osgi
160-
[without metrics]:http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/Cluster.Builder.html#withoutMetrics--
160+
[without metrics]:http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/Cluster.Builder.html#withoutMetrics--
161161
[SLF4J]:http://www.slf4j.org/
162162
[Logback]:http://logback.qos.ch/
163163
[Tycho]:https://eclipse.org/tycho/

manual/README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ String firstName = row.getString("first_name");
209209
<tr> <td>blob</td> <td>getBytes</td> <td>java.nio.ByteBuffer</td> </tr>
210210
<tr> <td>boolean</td> <td>getBool</td> <td>boolean</td> </tr>
211211
<tr> <td>counter</td> <td>getLong</td> <td>long</td> </tr>
212-
<tr> <td>date</td> <td>getDate</td> <td><a href="http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/LocalDate.html">LocalDate</a></td> </tr>
212+
<tr> <td>date</td> <td>getDate</td> <td><a href="http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/LocalDate.html">LocalDate</a></td> </tr>
213213
<tr> <td>decimal</td> <td>getDecimal</td> <td>java.math.BigDecimal</td> </tr>
214214
<tr> <td>double</td> <td>getDouble</td> <td>double</td> </tr>
215215
<tr> <td>float</td> <td>getFloat</td> <td>float</td> </tr>
@@ -286,17 +286,17 @@ menu on the left hand side to navigate sub-sections. If you're [browsing the sou
286286
github.com](https://github.com/datastax/java-driver/tree/3.x/manual),
287287
simply navigate to each sub-directory.
288288

289-
[Cluster]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/Cluster.html
290-
[Cluster.Builder]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/Cluster.Builder.html
291-
[Initializer]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/Cluster.Initializer.html
292-
[Session]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/Session.html
293-
[ResultSet]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/ResultSet.html
294-
[Row]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/Row.html
295-
[NettyOptions]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/NettyOptions.html
296-
[QueryOptions]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/QueryOptions.html
297-
[SocketOptions]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/SocketOptions.html
298-
[Host.StateListener]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/Host.StateListener.html
299-
[LatencyTracker]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/LatencyTracker.html
300-
[SchemaChangeListener]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/SchemaChangeListener.html
301-
[NoHostAvailableException]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/exceptions/NoHostAvailableException.html
302-
[LocalDate]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/LocalDate.html
289+
[Cluster]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/Cluster.html
290+
[Cluster.Builder]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/Cluster.Builder.html
291+
[Initializer]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/Cluster.Initializer.html
292+
[Session]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/Session.html
293+
[ResultSet]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/ResultSet.html
294+
[Row]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/Row.html
295+
[NettyOptions]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/NettyOptions.html
296+
[QueryOptions]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/QueryOptions.html
297+
[SocketOptions]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/SocketOptions.html
298+
[Host.StateListener]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/Host.StateListener.html
299+
[LatencyTracker]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/LatencyTracker.html
300+
[SchemaChangeListener]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/SchemaChangeListener.html
301+
[NoHostAvailableException]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/exceptions/NoHostAvailableException.html
302+
[LocalDate]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/LocalDate.html

manual/address_resolution/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ private/public switch automatically based on location).
102102

103103

104104

105-
[AddressTranslator]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/policies/AddressTranslator.html
106-
[EC2MultiRegionAddressTranslator]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/policies/EC2MultiRegionAddressTranslator.html
105+
[AddressTranslator]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/policies/AddressTranslator.html
106+
[EC2MultiRegionAddressTranslator]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/policies/EC2MultiRegionAddressTranslator.html
107107

108108
[cassandra.yaml]: https://docs.datastax.com/en/cassandra/3.x/cassandra/configuration/configCassandra_yaml.html
109109
[rpc_address]: https://docs.datastax.com/en/cassandra/3.x/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__rpc_address

manual/async/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ to the current page, and [fetchMoreResults] to get a future to the next
5151
page (see also the section on [paging](../paging/)).
5252
Here is a full example:
5353

54-
[getAvailableWithoutFetching]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/ResultSet.html#getAvailableWithoutFetching--
55-
[fetchMoreResults]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/ResultSet.html#fetchMoreResults--
54+
[getAvailableWithoutFetching]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/ResultSet.html#getAvailableWithoutFetching--
55+
[fetchMoreResults]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/ResultSet.html#fetchMoreResults--
5656

5757
```java
5858
Statement statement = new SimpleStatement("select * from foo").setFetchSize(20);
@@ -134,5 +134,5 @@ There are still a few places where the driver will block internally
134134
hasn't been fetched already.
135135

136136
[ListenableFuture]: https://github.com/google/guava/wiki/ListenableFutureExplained
137-
[init]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/Cluster.html#init--
138-
[query trace]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/QueryTrace.html
137+
[init]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/Cluster.html#init--
138+
[query trace]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/QueryTrace.html

manual/auth/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
*Coming soon... In the meantime, see the javadoc for [AuthProvider].*
44

5-
[AuthProvider]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/AuthProvider.html
5+
[AuthProvider]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/AuthProvider.html

manual/compression/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ cluster = Cluster.builder()
8585
.build();
8686
```
8787

88-
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.4.0/cassandra-driver-parent-3.4.0.pom
88+
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.5.0/cassandra-driver-parent-3.5.0.pom

manual/custom_codecs/README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -447,26 +447,26 @@ Beware that in these cases, the lookup performs in average 10x worse. If perform
447447
consider using prepared statements all the time.
448448

449449
[JAVA-721]: https://datastax-oss.atlassian.net/browse/JAVA-721
450-
[TypeCodec]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/TypeCodec.html
451-
[LocalDate]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/LocalDate.html
450+
[TypeCodec]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/TypeCodec.html
451+
[LocalDate]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/LocalDate.html
452452
[ByteBuffer]: http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html
453-
[serialize]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/TypeCodec.html#serialize-T-com.datastax.driver.core.ProtocolVersion-
454-
[deserialize]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/TypeCodec.html#deserialize-java.nio.ByteBuffer-com.datastax.driver.core.ProtocolVersion-
455-
[TypeCodec.format]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/TypeCodec.html#format-T-
456-
[TypeCodec.parse]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/TypeCodec.html#parse-java.lang.String-
457-
[accepts]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/TypeCodec.html#accepts-com.datastax.driver.core.DataType-
458-
[CodecRegistry]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/CodecRegistry.html
459-
[CodecNotFoundException]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/exceptions/CodecNotFoundException.html
453+
[serialize]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/TypeCodec.html#serialize-T-com.datastax.driver.core.ProtocolVersion-
454+
[deserialize]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/TypeCodec.html#deserialize-java.nio.ByteBuffer-com.datastax.driver.core.ProtocolVersion-
455+
[TypeCodec.format]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/TypeCodec.html#format-T-
456+
[TypeCodec.parse]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/TypeCodec.html#parse-java.lang.String-
457+
[accepts]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/TypeCodec.html#accepts-com.datastax.driver.core.DataType-
458+
[CodecRegistry]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/CodecRegistry.html
459+
[CodecNotFoundException]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/exceptions/CodecNotFoundException.html
460460
[Jackson]: https://github.com/FasterXML/jackson
461461
[AbstractType]: https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/db/marshal/AbstractType.java
462-
[UserType]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/UserType.html
463-
[UDTValue]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/UDTValue.html
464-
[TupleType]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/TupleType.html
465-
[TupleValue]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/TupleValue.html
466-
[CustomType]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/DataType.CustomType.html
462+
[UserType]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/UserType.html
463+
[UDTValue]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/UDTValue.html
464+
[TupleType]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/TupleType.html
465+
[TupleValue]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/TupleValue.html
466+
[CustomType]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/DataType.CustomType.html
467467
[TypeToken]: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/reflect/TypeToken.html
468-
[SimpleStatement]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/SimpleStatement.html
469-
[BuiltStatement]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/querybuilder/BuiltStatement.html
470-
[setList]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/SettableByIndexData.html#setList-int-java.util.List-
471-
[setSet]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/SettableByIndexData.html#setSet-int-java.util.Set-
472-
[setMap]: http://docs.datastax.com/en/drivers/java/3.4/com/datastax/driver/core/SettableByIndexData.html#setMap-int-java.util.Map-
468+
[SimpleStatement]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/SimpleStatement.html
469+
[BuiltStatement]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/querybuilder/BuiltStatement.html
470+
[setList]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/SettableByIndexData.html#setList-int-java.util.List-
471+
[setSet]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/SettableByIndexData.html#setSet-int-java.util.Set-
472+
[setMap]: http://docs.datastax.com/en/drivers/java/3.5/com/datastax/driver/core/SettableByIndexData.html#setMap-int-java.util.Map-

0 commit comments

Comments
 (0)