Skip to content

Commit

Permalink
Bump version to 3.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jyemin committed Oct 10, 2019
1 parent 3403235 commit 6ce24d2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def javaCodeCheckedProjects = subprojects.findAll { !['util', 'mongo-java-driver
configure(coreProjects) {
evaluationDependsOn(':util')
group = 'org.mongodb'
version = '3.11.1-SNAPSHOT'
version = '3.11.1'

repositories {
mavenLocal()
Expand Down
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.11.0"
current = "3.11.1"

[[versions]]
version = "3.11.0"
version = "3.11.1"
status = "current"
docs = "./3.11"
api = "./3.11/javadoc"
Expand Down Expand Up @@ -74,15 +74,15 @@ current = "3.11.0"
[[drivers]]
name = "mongodb-driver-sync"
description = "The synchronous driver, new in 3.7."
versions = "3.11.0-rc0,3.10.2,3.9.0,3.8.2,3.7.1"
versions = "3.11.1,3.10.2,3.9.0,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.11.0-rc0,3.10.2,3.9.0"
versions = "3.11.1,3.10.2,3.9.0"

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

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.11.0-rc0" >}}
{{< install artifactId="bson" version="3.11.1" >}}
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ When TLS/SSL is enabled, the MongoDB Async Driver requires either [Netty](http:/

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.11.0-rc0" dependencies="true">}}
{{< install artifactId="mongodb-driver-async" version="3.11.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.11.0-rc0" dependencies="true">}}
{{< install artifactId="mongodb-driver-sync" version="3.11.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.11.0-rc0" dependencies="true">}}
{{< install artifactId="mongodb-driver-legacy" version="3.11.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.11.0-rc0" dependencies="true">}}
{{< install artifactId="mongodb-driver" version="3.11.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.11.0-rc0">}}
{{< install artifactId="mongo-java-driver" version="3.11.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.11.0-rc0.jar"/>
<resource-root path="mongo-java-driver-3.11.1.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
Expand Down

0 comments on commit 6ce24d2

Please sign in to comment.