Skip to content

Commit

Permalink
Docs: Updated version to 3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rozza committed Nov 26, 2018
1 parent f798e4b commit 18ce59b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions docs/landing/data/releases.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
current = "3.9.0"
current = "3.9.1"

[[versions]]
version = "3.9.0"
version = "3.9.1"
status = "current"
docs = "./3.9"
api = "./3.9/javadoc"
Expand Down Expand Up @@ -64,15 +64,15 @@ current = "3.9.0"
[[drivers]]
name = "mongodb-driver-sync"
description = "The synchronous driver, new in 3.7."
versions = "3.9.0,3.8.2,3.7.1"
versions = "3.9.1,3.8.2,3.7.1"

[[drivers]]
name = "mongodb-driver-legacy"
description = "The legacy API for the synchronous driver.<br/>Prefer mongodb-driver-sync for new applications"
versions = "3.9.0"
versions = "3.9.1"

[[drivers]]
name = "mongodb-driver-async"
description = "The callback-based asynchronous driver.<br/>Prefer the Reactive Streams driver for new applications."
versions = "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"
versions = "3.9.1,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"

2 changes: 1 addition & 1 deletion docs/reference/content/bson/installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ This library comprehensively supports [BSON](http://www.bsonspec.org),
the data storage and network transfer format that MongoDB uses for "documents".
BSON is short for Binary [JSON](http://json.org/), is a binary-encoded serialization of JSON-like documents.

{{< install artifactId="bson" version="3.9.0" >}}
{{< install artifactId="bson" version="3.9.1" >}}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ The MongoDB Async Driver requires either [Netty](http://netty.io/) or Java 7.

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

{{< install artifactId="mongodb-driver-async" version="3.9.0" dependencies="true">}}
{{< install artifactId="mongodb-driver-async" version="3.9.1" dependencies="true">}}
8 changes: 4 additions & 4 deletions docs/reference/content/driver/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The `mongodb-driver-sync` artifact is a valid OSGi bundle whose symbolic name is

{{% /note %}}

{{< install artifactId="mongodb-driver-sync" version="3.9.0" dependencies="true">}}
{{< install artifactId="mongodb-driver-sync" version="3.9.1" dependencies="true">}}

## MongoDB Driver Legacy

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

{{% /note %}}

{{< install artifactId="mongodb-driver-legacy" version="3.9.0" dependencies="true">}}
{{< install artifactId="mongodb-driver-legacy" version="3.9.1" dependencies="true">}}

## MongoDB Driver

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

{{% /note %}}

{{< install artifactId="mongodb-driver" version="3.9.0" dependencies="true">}}
{{< install artifactId="mongodb-driver" version="3.9.1 dependencies="true">}}


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

{{% /note %}}

{{< install artifactId="mongo-java-driver" version="3.9.0">}}
{{< install artifactId="mongo-java-driver" version="3.9.1">}}
2 changes: 1 addition & 1 deletion docs/reference/content/driver/tutorials/jndi.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The configuration of the `MongoClientFactory` differs depending on the applicati

<module xmlns="urn:jboss:module:1.3" name="org.mongodb">
<resources>
<resource-root path="mongo-java-driver-3.9.0.jar"/>
<resource-root path="mongo-java-driver-3.9.1.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
Expand Down

0 comments on commit 18ce59b

Please sign in to comment.