Skip to content

Commit 4c9683d

Browse files
committed
Bump docs to next version.
1 parent 830c3e5 commit 4c9683d

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

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.8](https://github.com/datastax/java-driver/tree/2.1.8).*
11+
2.1.9](https://github.com/datastax/java-driver/tree/2.1.9).*
1212

1313
A modern, [feature-rich](features/) and highly tunable Java client
1414
library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+) using
@@ -77,7 +77,7 @@ it in your application using the following Maven dependency:
7777
<dependency>
7878
<groupId>com.datastax.cassandra</groupId>
7979
<artifactId>cassandra-driver-core</artifactId>
80-
<version>2.1.8</version>
80+
<version>2.1.9</version>
8181
</dependency>
8282
```
8383

@@ -87,15 +87,15 @@ Note that the object mapper is published as a separate artifact:
8787
<dependency>
8888
<groupId>com.datastax.cassandra</groupId>
8989
<artifactId>cassandra-driver-mapping</artifactId>
90-
<version>2.1.8</version>
90+
<version>2.1.9</version>
9191
</dependency>
9292
```
9393

9494
We also provide a [shaded JAR](features/shaded_jar/)
9595
to avoid the explicit dependency to Netty.
9696

9797
If you can't use a dependency management tool, a
98-
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-2.0.11.tar.gz)
98+
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-2.1.9.tar.gz)
9999
is available for download.
100100

101101
## 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.9 (in progress)
3+
### 2.1.9
44

55
- [bug] Fix implementation of UserType.hashCode() (JAVA-942)
66
- [bug] JAVA-854: avoid early return in Cluster.init when a node doesn't support the protocol version.

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

features/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.8</version>
14+
<version>2.1.9</version>
1515
</dependency>
1616
```
1717

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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
</execution>
159159
</executions>
160160
<configuration>
161-
<comparisonVersion>2.1.7.1</comparisonVersion>
161+
<comparisonVersion>2.1.8</comparisonVersion>
162162
<ignoredDifferencesFile>../clirr-ignores.xml</ignoredDifferencesFile>
163163
<excludes>
164164
<!-- Package-private, internal classes -->

0 commit comments

Comments
 (0)