Skip to content

Commit

Permalink
Update version in docs to 3.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hhughes committed Jul 26, 2023
1 parent e0a4edc commit 2e6c5f3
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 14 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ for the development version and that some features described here might
not yet have been released. You can find the documentation for the latest
version through the [Java driver
docs](http://docs.datastax.com/en/developer/java-driver/3.11/index.html) or via the release tags,
[e.g. 3.11.3](https://github.com/datastax/java-driver/tree/3.11.3).*
[e.g. 3.11.4](https://github.com/datastax/java-driver/tree/3.11.4).*

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

Expand All @@ -75,7 +75,7 @@ Note that the object mapper is published as a separate artifact:
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-mapping</artifactId>
<version>3.11.3</version>
<version>3.11.4</version>
</dependency>
```

Expand All @@ -85,7 +85,7 @@ The 'extras' module is also published as a separate artifact:
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-extras</artifactId>
<version>3.11.3</version>
<version>3.11.4/version>
</dependency>
```

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

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

## Compatibility

The Java client driver 3.11.3 ([branch 3.x](https://github.com/datastax/java-driver/tree/3.x)) is compatible with Apache
The Java client driver 3.11.4 ([branch 3.x](https://github.com/datastax/java-driver/tree/3.x)) is compatible with Apache
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
the most up-to-date compatibility information).

Expand Down
5 changes: 5 additions & 0 deletions changelog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
3.x versions get published.
-->

## 3.11.4
- [improvement] JAVA-3079: Upgrade Netty to 4.1.94, 3.x edition
- [improvement] JAVA-3082: Fix maven build for Apple-silicon
- [improvement] PR 1671: Fix LatencyAwarePolicy scale docstring

## 3.11.3
- [improvement] JAVA-3023: Upgrade Netty to 4.1.77, 3.x edition

Expand Down
2 changes: 1 addition & 1 deletion faq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ version is available, you may want to reach out to the maintainer of that tool t
an update with compatibility to this driver version.
[Blobs.java]: https://github.com/datastax/java-driver/tree/3.11.3/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
[Blobs.java]: https://github.com/datastax/java-driver/tree/3.11.4/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
[CASSANDRA-7304]: https://issues.apache.org/jira/browse/CASSANDRA-7304
[Parameters and Binding]: ../manual/statements/prepared/#parameters-and-binding
[Mapper options]: ../manual/object_mapper/using/#mapper-options
Expand Down
2 changes: 1 addition & 1 deletion manual/compression/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ cluster = Cluster.builder()
.build();
```

[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.11.3/cassandra-driver-parent-3.11.3.pom
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.11.4/cassandra-driver-parent-3.11.4.pom
2 changes: 1 addition & 1 deletion manual/custom_codecs/extras/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The module is published as a separate Maven artifact:
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-extras</artifactId>
<version>3.11.3</version>
<version>3.11.4</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion manual/metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To do this in a maven project:
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>3.11.3</version>
<version>3.11.4</version>
<exclusions>
<exclusion>
<groupId>io.dropwizard.metrics</groupId>
Expand Down
2 changes: 1 addition & 1 deletion manual/object_mapper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The mapper is published as a separate Maven artifact:
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-mapping</artifactId>
<version>3.11.3</version>
<version>3.11.4</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions manual/shaded_jar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ package name:
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>3.11.3</version>
<version>3.11.4</version>
<classifier>shaded</classifier>
<!-- Because the shaded JAR uses the original POM, you still need
to exclude this dependency explicitly: -->
Expand All @@ -32,7 +32,7 @@ non-shaded JAR:
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>3.11.3</version>
<version>3.11.4</version>
<classifier>shaded</classifier>
<exclusions>
<exclusion>
Expand All @@ -44,7 +44,7 @@ non-shaded JAR:
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-mapping</artifactId>
<version>3.11.3</version>
<version>3.11.4</version>
<exclusions>
<exclusion>
<groupId>com.datastax.cassandra</groupId>
Expand Down

0 comments on commit 2e6c5f3

Please sign in to comment.