Skip to content

Commit

Permalink
Update versions in docs to 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tolbertam committed Aug 29, 2018
1 parent 1df1125 commit 61377b1
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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/latest/index.html) or via the release tags,
[e.g.
3.5.1](https://github.com/datastax/java-driver/tree/3.5.1).*
3.6.0](https://github.com/datastax/java-driver/tree/3.6.0).*

_**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)._
Expand Down Expand Up @@ -60,7 +60,7 @@ The driver contains the following modules:
- API: http://www.datastax.com/drivers/java/3.5
- GITHUB REPOSITORY: https://github.com/datastax/java-driver
- [changelog](changelog/)
- [binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.5.1.tar.gz)
- [binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.6.0.tar.gz)

## Getting the driver

Expand All @@ -72,7 +72,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.5.1</version>
<version>3.6.0</version>
</dependency>
```

Expand All @@ -82,7 +82,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.5.1</version>
<version>3.6.0</version>
</dependency>
```

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

Expand All @@ -101,12 +101,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.5.1.tar.gz)
[binary tarball](http://downloads.datastax.com/java-driver/cassandra-java-driver-3.6.0.tar.gz)
is available for download.

## Compatibility

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

Expand Down
2 changes: 1 addition & 1 deletion changelog/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Changelog

### 3.6.0 (In progress)
### 3.6.0

- [improvement] JAVA-1394: Add request-queue-depth metric.
- [improvement] JAVA-1857: Add Statement.setHost.
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.5.1/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
[Blobs.java]: https://github.com/datastax/java-driver/tree/3.6.0/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 @@ -85,4 +85,4 @@ cluster = Cluster.builder()
.build();
```

[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.5.1/cassandra-driver-parent-3.5.1.pom
[pom]: https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.6.0/cassandra-driver-parent-3.6.0.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.5.1</version>
<version>3.6.0</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.5.1</version>
<version>3.6.0</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.5.1</version>
<version>3.6.0</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.5.1</version>
<version>3.6.0</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.5.1</version>
<version>3.6.0</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.5.1</version>
<version>3.6.0</version>
<exclusions>
<exclusion>
<groupId>com.datastax.cassandra</groupId>
Expand Down

0 comments on commit 61377b1

Please sign in to comment.