Skip to content

Commit d1ded1e

Browse files
committed
Update version in docs.
1 parent 7e20521 commit d1ded1e

5 files changed

Lines changed: 10 additions & 10 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-
3.0.0-alpha1](https://github.com/datastax/java-driver/tree/3.0.0-alpha1).*
11+
3.0.0-alpha2](https://github.com/datastax/java-driver/tree/3.0.0-alpha2).*
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
@@ -64,7 +64,7 @@ The driver contains the following modules:
6464

6565
**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).
6666

67-
## What's new in 3.0.0-alpha1
67+
## What's new in 3.0.0-alpha2
6868

6969
* Support for new system tables in C* 3.0.
7070

@@ -82,7 +82,7 @@ it in your application using the following Maven dependency:
8282
<dependency>
8383
<groupId>com.datastax.cassandra</groupId>
8484
<artifactId>cassandra-driver-core</artifactId>
85-
<version>3.0.0-alpha1</version>
85+
<version>3.0.0-alpha2</version>
8686
</dependency>
8787
```
8888

@@ -92,7 +92,7 @@ Note that the object mapper is published as a separate artifact:
9292
<dependency>
9393
<groupId>com.datastax.cassandra</groupId>
9494
<artifactId>cassandra-driver-mapping</artifactId>
95-
<version>3.0.0-alpha1</version>
95+
<version>3.0.0-alpha2</version>
9696
</dependency>
9797
```
9898

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.0-alpha2 (in progress)
3+
### 3.0.0-alpha2
44

55
- [new feature] Move secondary index metadata out of column definitions
66
(JAVA-875, JAVA-882).

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

0 commit comments

Comments
 (0)