Skip to content

Commit 16f28b5

Browse files
committed
Update version in docs.
1 parent 3716572 commit 16f28b5

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
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.1](https://github.com/datastax/java-driver/tree/2.1.10.1).*
11+
2.1.10.2](https://github.com/datastax/java-driver/tree/2.1.10.2).*
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.1</version>
69+
<version>2.1.10.2</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.1</version>
79+
<version>2.1.10.2</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.1.tar.gz)
87+
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-2.1.10.2.tar.gz)
8888
is available for download.
8989

9090
## Compatibility

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-
### 2.1.10.2 (in progress)
3+
### 2.1.10.2
44

55
Merged from 2.0 branch:
66

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.1/cassandra-driver-parent-2.1.10.1.pom
88+
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/2.1.10.2/cassandra-driver-parent-2.1.10.2.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.1</version>
14+
<version>2.1.10.2</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.1</version>
15+
<version>2.1.10.2</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.1</version>
35+
<version>2.1.10.2</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.1</version>
47+
<version>2.1.10.2</version>
4848
<exclusions>
4949
<exclusion>
5050
<groupId>com.datastax.cassandra</groupId>

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
limitations under the License.
1616
1717
-->
18-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
18+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1920
<modelVersion>4.0.0</modelVersion>
2021
<parent>
2122
<groupId>org.sonatype.oss</groupId>
2223
<artifactId>oss-parent</artifactId>
2324
<version>7</version>
24-
<relativePath />
25+
<relativePath/>
2526
</parent>
2627

2728
<groupId>com.datastax.cassandra</groupId>
@@ -155,7 +156,7 @@
155156
<!-- This requires includes to be explicitly specified by implementing classes.
156157
This is needed to prevent creating a JVM fork for each test, even those that don't
157158
have the isolated group. -->
158-
<includes />
159+
<includes/>
159160
</configuration>
160161
</plugin>
161162
</plugins>
@@ -251,7 +252,7 @@
251252
</execution>
252253
</executions>
253254
<configuration>
254-
<comparisonVersion>2.1.9</comparisonVersion>
255+
<comparisonVersion>2.1.10.1</comparisonVersion>
255256
<ignoredDifferencesFile>../clirr-ignores.xml</ignoredDifferencesFile>
256257
<excludes>
257258
<!-- Package-private, internal classes -->

0 commit comments

Comments
 (0)