Skip to content

Commit 46efef0

Browse files
committed
Update version in docs
1 parent d340a9f commit 46efef0

File tree

40 files changed

+285
-281
lines changed

40 files changed

+285
-281
lines changed

README.md

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

1111
A modern, [feature-rich](manual/) and highly tunable Java client
1212
library for Apache Cassandra (2.1+) and using exclusively Cassandra's binary protocol
@@ -50,12 +50,12 @@ The driver contains the following modules:
5050
driver releases and important announcements (low frequency).
5151
[@DataStaxEng](https://twitter.com/datastaxeng) has more news including
5252
other drivers, Cassandra, and DSE.
53-
- DOCS: the [manual](http://docs.datastax.com/en/developer/java-driver/3.10/manual/) has quick
53+
- DOCS: the [manual](http://docs.datastax.com/en/developer/java-driver/3.11/manual/) has quick
5454
start material and technical details about the driver and its features.
55-
- API: https://docs.datastax.com/en/drivers/java/3.10
55+
- API: https://docs.datastax.com/en/drivers/java/3.11
5656
- GITHUB REPOSITORY: https://github.com/datastax/java-driver
5757
- [changelog](changelog/)
58-
- [binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.10.2.tar.gz)
58+
- [binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.11.0.tar.gz)
5959

6060
## Getting the driver
6161

@@ -77,7 +77,7 @@ Note that the object mapper is published as a separate artifact:
7777
<dependency>
7878
<groupId>com.datastax.cassandra</groupId>
7979
<artifactId>cassandra-driver-mapping</artifactId>
80-
<version>3.10.2</version>
80+
<version>3.11.0</version>
8181
</dependency>
8282
```
8383

@@ -87,7 +87,7 @@ The 'extras' module is also published as a separate artifact:
8787
<dependency>
8888
<groupId>com.datastax.cassandra</groupId>
8989
<artifactId>cassandra-driver-extras</artifactId>
90-
<version>3.10.2</version>
90+
<version>3.11.0</version>
9191
</dependency>
9292
```
9393

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

9898
If you can't use a dependency management tool, a
99-
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.10.2.tar.gz)
99+
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.11.0.tar.gz)
100100
is available for download.
101101

102102
## Compatibility
103103

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

changelog/README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,30 @@
55
3.x versions get published.
66
-->
77

8-
## 3.11.0 (in progress)
8+
## 3.11.0
99

1010
- [improvement] JAVA-2705: Remove protocol v5 beta status, add v6-beta.
1111
- [bug] JAVA-2923: Detect and use Guava's new HostAndPort.getHost method.
1212
- [bug] JAVA-2922: Switch to modern framing format inside a channel handler.
1313
- [bug] JAVA-2924: Consider protocol version unsupported when server requires USE_BETA flag for it.
1414

15+
1516
## 3.10.2
1617

1718
- [bug] JAVA-2860: Avoid NPE if channel initialization crashes.
1819

20+
1921
## 3.10.1
2022

2123
- [bug] JAVA-2857: Fix NPE when built statements without parameters are logged at TRACE level.
2224
- [bug] JAVA-2843: Successfully parse DSE table schema in OSS driver.
2325

26+
2427
## 3.10.0
2528

26-
- [improvement] JAVA-2676: Don't reschedule flusher after empty runs
27-
- [new feature] JAVA-2772: Support new protocol v5 message format
29+
- [improvement] JAVA-2676: Don't reschedule flusher after empty runs.
30+
- [new feature] JAVA-2772: Support new protocol v5 message format.
31+
2832

2933
## 3.9.0
3034

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]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/ResultSet.html#wasApplied--
38+
[wasApplied]: https://docs.datastax.com/en/drivers/java/3.11/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.10.0/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
292+
[Blobs.java]: https://github.com/datastax/java-driver/tree/3.11.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]:https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Cluster.Builder.html#withoutMetrics--
160+
[without metrics]:https://docs.datastax.com/en/drivers/java/3.11/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="https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/LocalDate.html">LocalDate</a></td> </tr>
212+
<tr> <td>date</td> <td>getDate</td> <td><a href="https://docs.datastax.com/en/drivers/java/3.11/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>
@@ -291,17 +291,17 @@ menu on the left hand side to navigate sub-sections. If you're [browsing the sou
291291
github.com](https://github.com/datastax/java-driver/tree/3.x/manual),
292292
simply navigate to each sub-directory.
293293

294-
[Cluster]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Cluster.html
295-
[Cluster.Builder]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Cluster.Builder.html
296-
[Initializer]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Cluster.Initializer.html
297-
[Session]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Session.html
298-
[ResultSet]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/ResultSet.html
299-
[Row]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Row.html
300-
[NettyOptions]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/NettyOptions.html
301-
[QueryOptions]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/QueryOptions.html
302-
[SocketOptions]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/SocketOptions.html
303-
[Host.StateListener]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Host.StateListener.html
304-
[LatencyTracker]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/LatencyTracker.html
305-
[SchemaChangeListener]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/SchemaChangeListener.html
306-
[NoHostAvailableException]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/exceptions/NoHostAvailableException.html
307-
[LocalDate]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/LocalDate.html
294+
[Cluster]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Cluster.html
295+
[Cluster.Builder]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Cluster.Builder.html
296+
[Initializer]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Cluster.Initializer.html
297+
[Session]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Session.html
298+
[ResultSet]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/ResultSet.html
299+
[Row]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Row.html
300+
[NettyOptions]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/NettyOptions.html
301+
[QueryOptions]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/QueryOptions.html
302+
[SocketOptions]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/SocketOptions.html
303+
[Host.StateListener]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Host.StateListener.html
304+
[LatencyTracker]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/LatencyTracker.html
305+
[SchemaChangeListener]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/SchemaChangeListener.html
306+
[NoHostAvailableException]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/exceptions/NoHostAvailableException.html
307+
[LocalDate]: https://docs.datastax.com/en/drivers/java/3.11/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]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/policies/AddressTranslator.html
106-
[EC2MultiRegionAddressTranslator]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/policies/EC2MultiRegionAddressTranslator.html
105+
[AddressTranslator]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/policies/AddressTranslator.html
106+
[EC2MultiRegionAddressTranslator]: https://docs.datastax.com/en/drivers/java/3.11/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]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/ResultSet.html#getAvailableWithoutFetching--
55-
[fetchMoreResults]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/ResultSet.html#fetchMoreResults--
54+
[getAvailableWithoutFetching]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/ResultSet.html#getAvailableWithoutFetching--
55+
[fetchMoreResults]: https://docs.datastax.com/en/drivers/java/3.11/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]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Cluster.html#init--
138-
[query trace]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/QueryTrace.html
137+
[init]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Cluster.html#init--
138+
[query trace]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/QueryTrace.html

manual/auth/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can also write your own provider; it must implement [AuthProvider].
2828

2929
[SASL]: https://en.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer
3030

31-
[Cluster.Builder.withCredentials]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Cluster.Builder.html#withCredentials-java.lang.String-java.lang.String-
32-
[AuthProvider]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/AuthProvider.html
33-
[Cluster.Builder.withAuthProvider]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Cluster.Builder.html#withAuthProvider-com.datastax.driver.core.AuthProvider-
34-
[PlainTextAuthProvider]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/PlainTextAuthProvider.html
31+
[Cluster.Builder.withCredentials]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Cluster.Builder.html#withCredentials-java.lang.String-java.lang.String-
32+
[AuthProvider]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/AuthProvider.html
33+
[Cluster.Builder.withAuthProvider]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Cluster.Builder.html#withAuthProvider-com.datastax.driver.core.AuthProvider-
34+
[PlainTextAuthProvider]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/PlainTextAuthProvider.html

manual/compression/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ cluster = Cluster.builder()
8888
.build();
8989
```
9090

91-
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.10.0/cassandra-driver-parent-3.10.0.pom
91+
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.11.0/cassandra-driver-parent-3.11.0.pom

manual/control_connection/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ used exclusively for administrative requests. It is included in [Session.State.g
1818
as well as the `open-connections` [metric](../metrics); for example, if you've configured a pool
1919
size of 2, the control node will have 3 connections.
2020

21-
[Session.State.getOpenConnections]: https://docs.datastax.com/en/drivers/java/3.10/com/datastax/driver/core/Session.State.html#getOpenConnections-com.datastax.driver.core.Host-
21+
[Session.State.getOpenConnections]: https://docs.datastax.com/en/drivers/java/3.11/com/datastax/driver/core/Session.State.html#getOpenConnections-com.datastax.driver.core.Host-

0 commit comments

Comments
 (0)