Skip to content

Commit

Permalink
Update reference docs to refer to 3.4.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
jyemin committed Jan 26, 2017
1 parent 6194e56 commit 3243c77
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions docs/landing/data/releases.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
current = "3.4.1"
current = "3.4.2"

[[versions]]
version = "3.4.1"
version = "3.4.2"
status = "current"
docs = "./3.4"
api = "./3.4/javadoc"
Expand Down Expand Up @@ -39,19 +39,19 @@ current = "3.4.1"
[[drivers]]
name = "mongodb-driver"
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`."
versions = "3.4.1,3.3.0,3.2.2,3.1.1,3.0.4"
versions = "3.4.2,3.3.0,3.2.2,3.1.1,3.0.4"

[[drivers]]
name = "mongo-java-driver"
description = "An uber jar containing the bson library, the core library and the mongodb-driver.<br/>This artifact is a valid OSGi bundle."
versions = "3.4.1,3.3.0,3.2.2,3.1.1,3.0.4,2.14.2,2.13.3"
versions = "3.4.2,3.3.0,3.2.2,3.1.1,3.0.4,2.14.2,2.13.3"

[[drivers]]
name = "mongodb-driver-async"
description = "The new asynchronous driver, new in 3.0"
versions = "3.4.1,3.3.0,3.2.2,3.1.1,3.0.4"
versions = "3.4.2,3.3.0,3.2.2,3.1.1,3.0.4"

[[drivers]]
name = "mongodb-driver-core"
description = "The core library, new in 3.0"
versions = "3.4.1,3.3.0,3.2.2,3.1.1,3.0.4"
versions = "3.4.2,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.4.1" >}}
{{< install artifactId="bson" version="3.4.2" >}}
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.4.1" dependencies="true">}}
{{< install artifactId="mongodb-driver-async" version="3.4.2" dependencies="true">}}
4 changes: 2 additions & 2 deletions docs/reference/content/driver/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For OSGi-based applications, use the [mongo-java-driver](#uber-jar-legacy) uber

{{% /note %}}

{{< install artifactId="mongodb-driver" version="3.4.1" dependencies="true">}}
{{< install artifactId="mongodb-driver" version="3.4.2" dependencies="true">}}


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

{{< install artifactId="mongo-java-driver" version="3.4.1">}}
{{< install artifactId="mongo-java-driver" version="3.4.2">}}
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.4.1.jar"/>
<resource-root path="mongo-java-driver-3.4.2.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
Expand Down

0 comments on commit 3243c77

Please sign in to comment.