Skip to content

Commit 1050c62

Browse files
author
Alexandre Dutra
committed
Update documentation with version 2.1.10.1.
1 parent 3deac8d commit 1050c62

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

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

1313
A modern, [feature-rich](manual/) and highly tunable Java client
1414
library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+) using
@@ -66,7 +66,7 @@ it in your application using the following Maven dependency:
6666
<dependency>
6767
<groupId>com.datastax.cassandra</groupId>
6868
<artifactId>cassandra-driver-core</artifactId>
69-
<version>2.1.10</version>
69+
<version>2.1.10.1</version>
7070
</dependency>
7171
```
7272

@@ -76,15 +76,15 @@ Note that the object mapper is published as a separate artifact:
7676
<dependency>
7777
<groupId>com.datastax.cassandra</groupId>
7878
<artifactId>cassandra-driver-mapping</artifactId>
79-
<version>2.1.10</version>
79+
<version>2.1.10.1</version>
8080
</dependency>
8181
```
8282

8383
We also provide a [shaded JAR](manual/shaded_jar/)
8484
to avoid the explicit dependency to Netty.
8585

8686
If you can't use a dependency management tool, a
87-
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-2.1.10.tar.gz)
87+
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-2.1.10.1.tar.gz)
8888
is available for download.
8989

9090
## Compatibility

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/2.1.10/cassandra-driver-parent-2.1.10.pom
88+
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/2.1.10.1/cassandra-driver-parent-2.1.10.1.pom

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>2.1.10</version>
14+
<version>2.1.10.1</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>2.1.10</version>
15+
<version>2.1.10.1</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>2.1.10</version>
35+
<version>2.1.10.1</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>2.1.10</version>
47+
<version>2.1.10.1</version>
4848
<exclusions>
4949
<exclusion>
5050
<groupId>com.datastax.cassandra</groupId>

0 commit comments

Comments
 (0)