Skip to content

Commit 1e34c3f

Browse files
committed
Update docs for 3.0.3 release.
1 parent 49eee14 commit 1e34c3f

7 files changed

Lines changed: 20 additions & 19 deletions

File tree

README.md

Lines changed: 7 additions & 7 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-
3.0.2](https://github.com/datastax/java-driver/tree/3.0.2).*
11+
3.0.3](https://github.com/datastax/java-driver/tree/3.0.3).*
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
@@ -56,7 +56,7 @@ The driver contains the following modules:
5656
[here](manual/) with more technical details.
5757
- API: http://www.datastax.com/drivers/java/3.0
5858
- [changelog](changelog/)
59-
- [binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.0.2.tar.gz)
59+
- [binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.0.3.tar.gz)
6060

6161
**Feeback requested:** help us focus our efforts, provide your input on the [Platform and Runtime Survey](http://goo.gl/forms/qwUE6qnL7U) (we kept it short).
6262

@@ -69,7 +69,7 @@ it in your application using the following Maven dependency:
6969
<dependency>
7070
<groupId>com.datastax.cassandra</groupId>
7171
<artifactId>cassandra-driver-core</artifactId>
72-
<version>3.0.2</version>
72+
<version>3.0.3</version>
7373
</dependency>
7474
```
7575

@@ -79,7 +79,7 @@ Note that the object mapper is published as a separate artifact:
7979
<dependency>
8080
<groupId>com.datastax.cassandra</groupId>
8181
<artifactId>cassandra-driver-mapping</artifactId>
82-
<version>3.0.2</version>
82+
<version>3.0.3</version>
8383
</dependency>
8484
```
8585

@@ -89,7 +89,7 @@ The 'extras' module is also published as a separate artifact:
8989
<dependency>
9090
<groupId>com.datastax.cassandra</groupId>
9191
<artifactId>cassandra-driver-extras</artifactId>
92-
<version>3.0.2</version>
92+
<version>3.0.3</version>
9393
</dependency>
9494
```
9595

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

100100
If you can't use a dependency management tool, a
101-
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.0.2.tar.gz)
101+
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.0.3.tar.gz)
102102
is available for download.
103103

104104
## Compatibility
105105

106-
The Java client driver 3.0.2 ([branch 3.0.x](https://github.com/datastax/java-driver/tree/3.0.x)) is compatible with Apache
106+
The Java client driver 3.0.3 ([branch 3.0.x](https://github.com/datastax/java-driver/tree/3.0.x)) is compatible with Apache
107107
Cassandra 1.2, 2.0, 2.1, 2.2 and 3.0 (see [this page](http://datastax.github.io/java-driver/manual/native_protocol) for
108108
the most up-to-date compatibility information).
109109

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

55
- [improvement] JAVA-1147: Upgrade Netty to 4.0.37.
66
- [bug] JAVA-1213: Allow updates and inserts to BLOB column using read-only ByteBuffer.

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/3.0.2/cassandra-driver-parent-3.0.2.pom
88+
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.0.3/cassandra-driver-parent-3.0.3.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.0.2</version>
13+
<version>3.0.3</version>
1414
</dependency>
1515
```
1616

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

pom.xml

Lines changed: 6 additions & 5 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>
@@ -71,7 +72,7 @@
7172
<ipprefix>127.0.1.</ipprefix>
7273
<test.groups>unit</test.groups>
7374
<!-- Set default javadoc.opts, overriden by profiles -->
74-
<javadoc.opts />
75+
<javadoc.opts/>
7576
</properties>
7677

7778
<profiles>
@@ -145,7 +146,7 @@
145146
<!-- This requires includes to be explicitly specified by implementing classes.
146147
This is needed to prevent creating a JVM fork for each test, even those that don't
147148
have the isolated group. -->
148-
<includes />
149+
<includes/>
149150
</configuration>
150151
</plugin>
151152
</plugins>
@@ -281,7 +282,7 @@
281282
</execution>
282283
</executions>
283284
<configuration>
284-
<comparisonVersion>3.0.0</comparisonVersion>
285+
<comparisonVersion>3.0.2</comparisonVersion>
285286
<ignoredDifferencesFile>../clirr-ignores.xml</ignoredDifferencesFile>
286287
</configuration>
287288
<!--

0 commit comments

Comments
 (0)