Skip to content

Commit 5108446

Browse files
committed
Docs: 3.11.0-beta4
1 parent e94ec14 commit 5108446

File tree

8 files changed

+18
-12
lines changed

8 files changed

+18
-12
lines changed

docs/landing/data/releases.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
current = "3.10.2"
22

3+
[[versions]]
4+
version = "3.11.0-beta4"
5+
docs = "./3.11"
6+
api = "./3.11/javadoc"
7+
38
[[versions]]
49
version = "3.10.2"
510
status = "current"
@@ -69,15 +74,15 @@ current = "3.10.2"
6974
[[drivers]]
7075
name = "mongodb-driver-sync"
7176
description = "The synchronous driver, new in 3.7."
72-
versions = "3.10.2,3.9.0,3.8.2,3.7.1"
77+
versions = "3.11.0-beta4,3.10.2,3.9.0,3.8.2,3.7.1"
7378

7479
[[drivers]]
7580
name = "mongodb-driver-legacy"
7681
description = "The legacy API for the synchronous driver.<br/>Prefer mongodb-driver-sync for new applications"
77-
versions = "3.10.2,3.9.0"
82+
versions = "3.11.0-beta4,3.10.2,3.9.0"
7883

7984
[[drivers]]
8085
name = "mongodb-driver-async"
8186
description = "The callback-based asynchronous driver.<br/>Prefer the Reactive Streams driver for new applications."
82-
versions = "3.10.2,3.9.0,3.8.2,3.7.1,3.6.4,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
87+
versions = "3.11.0-beta4,3.10.2,3.9.0,3.8.2,3.7.1,3.6.4,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
8388

docs/landing/static/versions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[
2+
{"version": "3.11"},
23
{"version": "3.10"},
34
{"version": "3.9"},
45
{"version": "3.8"},

docs/reference/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
baseURL = "/mongo-java-driver/3.10"
1+
baseURL = "/mongo-java-driver/3.11"
22
languageCode = "en-us"
33
title = "MongoDB Java Driver"
44
theme = "mongodb"

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.10.2" >}}
25+
{{< install artifactId="bson" version="3.11.0-beta4" >}}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ When TLS/SSL is enabled, the MongoDB Async Driver requires either [Netty](http:/
2424

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

27-
{{< install artifactId="mongodb-driver-async" version="3.10.2" dependencies="true">}}
27+
{{< install artifactId="mongodb-driver-async" version="3.11.0-beta4" dependencies="true">}}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The `mongodb-driver-sync` artifact is a valid OSGi bundle whose symbolic name is
3131

3232
{{% /note %}}
3333

34-
{{< install artifactId="mongodb-driver-sync" version="3.10.2" dependencies="true">}}
34+
{{< install artifactId="mongodb-driver-sync" version="3.11.0-beta4" dependencies="true">}}
3535

3636
## MongoDB Driver Legacy
3737

@@ -44,7 +44,7 @@ While not deprecated, we recommend that new applications depend on the `mongodb-
4444

4545
{{% /note %}}
4646

47-
{{< install artifactId="mongodb-driver-legacy" version="3.10.2" dependencies="true">}}
47+
{{< install artifactId="mongodb-driver-legacy" version="3.11.0-beta4" dependencies="true">}}
4848

4949
## MongoDB Driver
5050

@@ -61,7 +61,7 @@ This module is deprecated and will no longer be published in the next major rele
6161

6262
{{% /note %}}
6363

64-
{{< install artifactId="mongodb-driver" version="3.10.2" dependencies="true">}}
64+
{{< install artifactId="mongodb-driver" version="3.11.0-beta4" dependencies="true">}}
6565

6666

6767
## Uber Jar (Legacy)
@@ -81,4 +81,4 @@ This module is deprecated and will no longer be published in the next major rele
8181

8282
{{% /note %}}
8383

84-
{{< install artifactId="mongo-java-driver" version="3.10.2">}}
84+
{{< install artifactId="mongo-java-driver" version="3.11.0-beta4">}}

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.10.2.jar"/>
31+
<resource-root path="mongo-java-driver-3.11.0-beta4.jar"/>
3232
</resources>
3333
<dependencies>
3434
<module name="javax.api"/>

docs/reference/data/mongodb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Update versions in config.toml as well
22
githubRepo = "mongo-java-driver"
33
githubBranch = "master"
4-
currentVersion = "3.10"
4+
currentVersion = "3.11"
55
highlightTheme = "idea.css"
66
apiUrl = "/javadoc"

0 commit comments

Comments
 (0)