Skip to content

Commit c2740cf

Browse files
committed
Update documentation to refer to 3.6.0-beta2
1 parent 9dbd694 commit c2740cf

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

docs/landing/data/releases.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
current = "3.5.0"
22

33
[[versions]]
4-
version = "3.6.0-beta1"
4+
version = "3.6.0-beta2"
55
docs = "./3.6"
66
api = "./3.6/javadoc"
77

@@ -49,19 +49,19 @@ current = "3.5.0"
4949
[[drivers]]
5050
name = "mongodb-driver"
5151
description = "The synchronous driver, new in 3.0.<br/>For older versions of the driver or for OSGi-based applications please use the `mongo-java-driver`."
52-
versions = "3.6.0-beta1,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
52+
versions = "3.6.0-beta2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
5353

5454
[[drivers]]
5555
name = "mongo-java-driver"
5656
description = "An uber jar containing the bson library, the core library and the mongodb-driver.<br/>This artifact is a valid OSGi bundle."
57-
versions = "3.6.0-beta1,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4,2.14.2,2.13.3"
57+
versions = "3.6.0-beta2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4,2.14.2,2.13.3"
5858

5959
[[drivers]]
6060
name = "mongodb-driver-async"
6161
description = "The new asynchronous driver, new in 3.0"
62-
versions = "3.6.0-beta1,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
62+
versions = "3.6.0-beta2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
6363

6464
[[drivers]]
6565
name = "mongodb-driver-core"
6666
description = "The core library, new in 3.0"
67-
versions = "3.6.0-beta1,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
67+
versions = "3.6.0-beta2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"

docs/reference/content/bson/installation-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ This library comprehensively supports [BSON](http://www.bsonspec.org),
2222
the data storage and network transfer format that MongoDB uses for "documents".
2323
BSON is short for Binary [JSON](http://json.org/), is a binary-encoded serialization of JSON-like documents.
2424

25-
{{< install artifactId="bson" version="3.6.0-beta1" >}}
25+
{{< install artifactId="bson" version="3.6.0-beta2" >}}

docs/reference/content/driver-async/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ The MongoDB Async Driver requires either [Netty](http://netty.io/) or Java 7.
2323

2424
The MongoDB Async Driver provides asynchronous API that can leverage either Netty or Java 7's AsynchronousSocketChannel for fast and non-blocking I/O.
2525

26-
{{< install artifactId="mongodb-driver-async" version="3.6.0-beta1" dependencies="true">}}
26+
{{< install artifactId="mongodb-driver-async" version="3.6.0-beta2" dependencies="true">}}

docs/reference/content/driver/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For OSGi-based applications, use the [mongo-java-driver](#uber-jar-legacy) uber
2929

3030
{{% /note %}}
3131

32-
{{< install artifactId="mongodb-driver" version="3.6.0-beta1" dependencies="true">}}
32+
{{< install artifactId="mongodb-driver" version="3.6.0-beta2" dependencies="true">}}
3333

3434

3535
## Uber Jar (Legacy)
@@ -41,4 +41,4 @@ For new applications, the preferred artifact is [mongodb-driver](#mongodb-driver
4141
The `mongo-java-driver` artifact is a valid OSGi bundle.
4242
{{% /note %}}
4343

44-
{{< install artifactId="mongo-java-driver" version="3.6.0-beta1">}}
44+
{{< install artifactId="mongo-java-driver" version="3.6.0-beta2">}}

docs/reference/content/driver/tutorials/jndi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The configuration of the `MongoClientFactory` differs depending on the applicati
2828

2929
<module xmlns="urn:jboss:module:1.3" name="org.mongodb">
3030
<resources>
31-
<resource-root path="mongo-java-driver-3.6.0-beta1.jar"/>
31+
<resource-root path="mongo-java-driver-3.6.0-beta2.jar"/>
3232
</resources>
3333
<dependencies>
3434
<module name="javax.api"/>

docs/reference/content/whats-new.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,14 @@ The 3.6 release adds support for compression of messages to and from appropriate
2020

2121
### Change Stream support
2222

23-
The 3.6 release add support for [change streams](https://docs.mongodb.com/manual/operator/aggregation/changeStream).
23+
The 3.6 release adds support for [change streams](https://docs.mongodb.com/manual/operator/aggregation/changeStream).
2424

25-
* [Change Stream Quick Start]({{<ref "driver/getting-started/quick-start-pojo.md">}})
26-
* [Change Stream Quick Start (Async)]({{<ref "driver-async/getting-started/quick-start-pojo.md">}})
25+
* [Change Stream Quick Start]({{<ref "driver/tutorials/change-streams.md">}})
26+
* [Change Stream Quick Start (Async)]({{<ref "driver-async/tutorials/change-streams.md">}})
27+
28+
### Causal consistency
29+
30+
The 3.6 release adds support for causally consistency.
2731

2832
## What's New in 3.5
2933

0 commit comments

Comments
 (0)