Skip to content

Commit 2e6c5f3

Browse files
committed
Update version in docs to 3.11.4
1 parent e0a4edc commit 2e6c5f3

File tree

8 files changed

+19
-14
lines changed

8 files changed

+19
-14
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ for the development version and that some features described here might
55
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/3.11/index.html) or via the release tags,
8-
[e.g. 3.11.3](https://github.com/datastax/java-driver/tree/3.11.3).*
8+
[e.g. 3.11.4](https://github.com/datastax/java-driver/tree/3.11.4).*
99

1010
A modern, [feature-rich](manual/) and highly tunable Java client
1111
library for Apache Cassandra (2.1+) and using exclusively Cassandra's binary protocol
@@ -65,7 +65,7 @@ using DataStax Enterprise, install the [DataStax Enterprise Java driver][dse-dri
6565
<dependency>
6666
<groupId>com.datastax.cassandra</groupId>
6767
<artifactId>cassandra-driver-core</artifactId>
68-
<version>3.11.3</version>
68+
<version>3.11.4</version>
6969
</dependency>
7070
```
7171

@@ -75,7 +75,7 @@ Note that the object mapper is published as a separate artifact:
7575
<dependency>
7676
<groupId>com.datastax.cassandra</groupId>
7777
<artifactId>cassandra-driver-mapping</artifactId>
78-
<version>3.11.3</version>
78+
<version>3.11.4</version>
7979
</dependency>
8080
```
8181

@@ -85,7 +85,7 @@ The 'extras' module is also published as a separate artifact:
8585
<dependency>
8686
<groupId>com.datastax.cassandra</groupId>
8787
<artifactId>cassandra-driver-extras</artifactId>
88-
<version>3.11.3</version>
88+
<version>3.11.4/version>
8989
</dependency>
9090
```
9191

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

9696
If you can't use a dependency management tool, a
97-
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.11.3.tar.gz)
97+
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.11.4.tar.gz)
9898
is available for download.
9999

100100
## Compatibility
101101

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

changelog/README.md

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

8+
## 3.11.4
9+
- [improvement] JAVA-3079: Upgrade Netty to 4.1.94, 3.x edition
10+
- [improvement] JAVA-3082: Fix maven build for Apple-silicon
11+
- [improvement] PR 1671: Fix LatencyAwarePolicy scale docstring
12+
813
## 3.11.3
914
- [improvement] JAVA-3023: Upgrade Netty to 4.1.77, 3.x edition
1015

faq/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.11.3/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
292+
[Blobs.java]: https://github.com/datastax/java-driver/tree/3.11.4/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

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.11.3/cassandra-driver-parent-3.11.3.pom
91+
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.11.4/cassandra-driver-parent-3.11.4.pom

manual/custom_codecs/extras/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The module is published as a separate Maven artifact:
1010
<dependency>
1111
<groupId>com.datastax.cassandra</groupId>
1212
<artifactId>cassandra-driver-extras</artifactId>
13-
<version>3.11.3</version>
13+
<version>3.11.4</version>
1414
</dependency>
1515
```
1616

manual/metrics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To do this in a maven project:
3838
<dependency>
3939
<groupId>com.datastax.cassandra</groupId>
4040
<artifactId>cassandra-driver-core</artifactId>
41-
<version>3.11.3</version>
41+
<version>3.11.4</version>
4242
<exclusions>
4343
<exclusion>
4444
<groupId>io.dropwizard.metrics</groupId>

manual/object_mapper/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The mapper is published as a separate Maven artifact:
1111
<dependency>
1212
<groupId>com.datastax.cassandra</groupId>
1313
<artifactId>cassandra-driver-mapping</artifactId>
14-
<version>3.11.3</version>
14+
<version>3.11.4</version>
1515
</dependency>
1616
```
1717

manual/shaded_jar/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ package name:
1212
<dependency>
1313
<groupId>com.datastax.cassandra</groupId>
1414
<artifactId>cassandra-driver-core</artifactId>
15-
<version>3.11.3</version>
15+
<version>3.11.4</version>
1616
<classifier>shaded</classifier>
1717
<!-- Because the shaded JAR uses the original POM, you still need
1818
to exclude this dependency explicitly: -->
@@ -32,7 +32,7 @@ non-shaded JAR:
3232
<dependency>
3333
<groupId>com.datastax.cassandra</groupId>
3434
<artifactId>cassandra-driver-core</artifactId>
35-
<version>3.11.3</version>
35+
<version>3.11.4</version>
3636
<classifier>shaded</classifier>
3737
<exclusions>
3838
<exclusion>
@@ -44,7 +44,7 @@ non-shaded JAR:
4444
<dependency>
4545
<groupId>com.datastax.cassandra</groupId>
4646
<artifactId>cassandra-driver-mapping</artifactId>
47-
<version>3.11.3</version>
47+
<version>3.11.4</version>
4848
<exclusions>
4949
<exclusion>
5050
<groupId>com.datastax.cassandra</groupId>

0 commit comments

Comments
 (0)