Skip to content

Commit e58ea48

Browse files
author
Alexandre Dutra
committed
Update version in docs
1 parent bb04e92 commit e58ea48

8 files changed

Lines changed: 18 additions & 18 deletions

File tree

changelog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- Note: contrary to 3.x, insert new entries *first* in their section -->
44

5-
### 4.0.0-rc1 (in progress)
5+
### 4.0.0-rc1
66

77
- [improvement] JAVA-2106: Log server side warnings returned from a query
88
- [improvement] JAVA-2151: Drop "Dsl" suffix from query builder main classes

core/revapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@
695695
"classQualifiedName": "com.datastax.oss.driver.api.core.metadata.TokenMap",
696696
"classSimpleName": "TokenMap",
697697
"methodName": "getPartitionerName",
698-
"newArchive": "com.datastax.oss:java-driver-core:jar:4.0.0-rc1-SNAPSHOT",
698+
"newArchive": "com.datastax.oss:java-driver-core:jar:4.0.0-rc1",
699699
"elementKind": "method",
700700
"justification": "JAVA-2103: Expose partitioner name in TokenMap API"
701701
},
@@ -707,7 +707,7 @@
707707
"classQualifiedName": "com.datastax.oss.driver.api.core.connection.ReconnectionPolicy",
708708
"classSimpleName": "ReconnectionPolicy",
709709
"methodName": "newControlConnectionSchedule",
710-
"newArchive": "com.datastax.oss:java-driver-core:jar:4.0.0-rc1-SNAPSHOT",
710+
"newArchive": "com.datastax.oss:java-driver-core:jar:4.0.0-rc1",
711711
"elementKind": "method",
712712
"justification": "JAVA-2077: Allow reconnection policy to detect first connection attempt"
713713
}

manual/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ following coordinates:
77
<dependency>
88
<groupId>com.datastax.oss</groupId>
99
<artifactId>java-driver-core</artifactId>
10-
<version>4.0.0-beta3</version>
10+
<version>4.0.0-rc1</version>
1111
</dependency>
1212
```
1313

manual/core/compression/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ Dependency:
7070

7171
Always double-check the exact Snappy version needed; you can find it in the driver's [parent POM].
7272

73-
[parent POM]: https://search.maven.org/#artifactdetails%7Ccom.datastax.oss%7Cjava-driver-parent%7C4.0.0-beta3%7Cpom
73+
[parent POM]: https://search.maven.org/#artifactdetails%7Ccom.datastax.oss%7Cjava-driver-parent%7C4.0.0-rc1%7Cpom

manual/core/integration/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies, and tell Maven that we're going to use Java 8:
3939
<dependency>
4040
<groupId>com.datastax.oss</groupId>
4141
<artifactId>java-driver-core</artifactId>
42-
<version>4.0.0-beta3</version>
42+
<version>4.0.0-rc1</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>ch.qos.logback</groupId>
@@ -144,7 +144,7 @@ You should see output similar to:
144144
[INFO] Nothing to compile - all classes are up to date
145145
[INFO]
146146
[INFO] --- exec-maven-plugin:1.3.1:java (default-cli) @ yourapp ---
147-
11:39:45.355 [Main.main()] INFO c.d.o.d.i.c.DefaultMavenCoordinates - DataStax Java driver for Apache Cassandra(R) (com.datastax.oss:java-driver-core) version 4.0.0-beta3
147+
11:39:45.355 [Main.main()] INFO c.d.o.d.i.c.DefaultMavenCoordinates - DataStax Java driver for Apache Cassandra(R) (com.datastax.oss:java-driver-core) version 4.0.0-rc1
148148
11:39:45.648 [poc-admin-0] INFO c.d.o.d.internal.core.time.Clock - Using native clock for microsecond precision
149149
11:39:45.649 [poc-admin-0] INFO c.d.o.d.i.c.metadata.MetadataManager - [poc] No contact points provided, defaulting to /127.0.0.1:9042
150150
3.11.2
@@ -176,7 +176,7 @@ repositories {
176176
}
177177
178178
dependencies {
179-
compile group: 'com.datastax.oss', name: 'java-driver-core', version: '4.0.0-beta3'
179+
compile group: 'com.datastax.oss', name: 'java-driver-core', version: '4.0.0-rc1'
180180
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
181181
}
182182
```
@@ -260,7 +260,7 @@ In that case, you can exclude the dependency:
260260
<dependency>
261261
<groupId>com.datastax.oss</groupId>
262262
<artifactId>java-driver-core</artifactId>
263-
<version>4.0.0-beta3</version>
263+
<version>4.0.0-rc1</version>
264264
<exclusions>
265265
<exclusion>
266266
<groupId>com.typesafe</groupId>
@@ -288,7 +288,7 @@ are not available on your platform, you can exclude the following dependencies:
288288
<dependency>
289289
<groupId>com.datastax.oss</groupId>
290290
<artifactId>java-driver-core</artifactId>
291-
<version>4.0.0-beta3</version>
291+
<version>4.0.0-rc1</version>
292292
<exclusions>
293293
<exclusion>
294294
<groupId>com.github.jnr</groupId>
@@ -322,7 +322,7 @@ and never call [Session.getMetrics] anywhere in your application, you can remove
322322
<dependency>
323323
<groupId>com.datastax.oss</groupId>
324324
<artifactId>java-driver-core</artifactId>
325-
<version>4.0.0-beta3</version>
325+
<version>4.0.0-rc1</version>
326326
<exclusions>
327327
<exclusion>
328328
<groupId>io.dropwizard.metrics</groupId>
@@ -343,7 +343,7 @@ If all of these metrics are disabled, you can remove the dependency:
343343
<dependency>
344344
<groupId>com.datastax.oss</groupId>
345345
<artifactId>java-driver-core</artifactId>
346-
<version>4.0.0-beta3</version>
346+
<version>4.0.0-rc1</version>
347347
<exclusions>
348348
<exclusion>
349349
<groupId>org.hdrhistogram</groupId>
@@ -369,7 +369,7 @@ exclude them:
369369
<dependency>
370370
<groupId>com.datastax.oss</groupId>
371371
<artifactId>java-driver-core</artifactId>
372-
<version>4.0.0-beta3</version>
372+
<version>4.0.0-rc1</version>
373373
<exclusions>
374374
<exclusion>
375375
<groupId>com.github.stephenc.jcip</groupId>

manual/core/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.oss</groupId>
1414
<artifactId>java-driver-core-shaded</artifactId>
15-
<version>4.0.0-beta3</version>
15+
<version>4.0.0-rc1</version>
1616
</dependency>
1717
```
1818

@@ -23,12 +23,12 @@ dependency to the non-shaded JAR:
2323
<dependency>
2424
<groupId>com.datastax.oss</groupId>
2525
<artifactId>java-driver-core-shaded</artifactId>
26-
<version>4.0.0-beta3</version>
26+
<version>4.0.0-rc1</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.datastax.oss</groupId>
3030
<artifactId>java-driver-query-builder</artifactId>
31-
<version>4.0.0-beta3</version>
31+
<version>4.0.0-rc1</version>
3232
<exclusions>
3333
<exclusion>
3434
<groupId>com.datastax.oss</groupId>

manual/query_builder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use it in your application, add the following dependency:
1414
<dependency>
1515
<groupId>com.datastax.oss</groupId>
1616
<artifactId>java-driver-query-builder</artifactId>
17-
<version>4.0.0-beta3</version>
17+
<version>4.0.0-rc1</version>
1818
</dependency>
1919
```
2020

query-builder/revapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"old": "parameter SelfT com.datastax.oss.driver.api.querybuilder.schema.RelationOptions<SelfT extends com.datastax.oss.driver.api.querybuilder.schema.RelationOptions<SelfT extends com.datastax.oss.driver.api.querybuilder.schema.RelationOptions<SelfT>>>::withCaching(boolean, ===com.datastax.oss.driver.api.querybuilder.SchemaBuilderDsl.RowsPerPartition===)",
123123
"new": "parameter SelfT com.datastax.oss.driver.api.querybuilder.schema.RelationOptions<SelfT extends com.datastax.oss.driver.api.querybuilder.schema.RelationOptions<SelfT extends com.datastax.oss.driver.api.querybuilder.schema.RelationOptions<SelfT>>>::withCaching(boolean, ===com.datastax.oss.driver.api.querybuilder.SchemaBuilder.RowsPerPartition===)",
124124
"oldArchive": "com.datastax.oss:java-driver-query-builder:jar:4.0.0-beta3",
125-
"newArchive": "com.datastax.oss:java-driver-query-builder:jar:4.0.0-rc1-SNAPSHOT",
125+
"newArchive": "com.datastax.oss:java-driver-query-builder:jar:4.0.0-rc1",
126126
"justification": "JAVA-2151: Drop \"Dsl\" suffix from query builder main classes"
127127
}
128128
]

0 commit comments

Comments
 (0)