Skip to content

Commit 6ce24d2

Browse files
committed
Bump version to 3.11.1
1 parent 3403235 commit 6ce24d2

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def javaCodeCheckedProjects = subprojects.findAll { !['util', 'mongo-java-driver
5454
configure(coreProjects) {
5555
evaluationDependsOn(':util')
5656
group = 'org.mongodb'
57-
version = '3.11.1-SNAPSHOT'
57+
version = '3.11.1'
5858

5959
repositories {
6060
mavenLocal()

docs/landing/data/releases.toml

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

33
[[versions]]
4-
version = "3.11.0"
4+
version = "3.11.1"
55
status = "current"
66
docs = "./3.11"
77
api = "./3.11/javadoc"
@@ -74,15 +74,15 @@ current = "3.11.0"
7474
[[drivers]]
7575
name = "mongodb-driver-sync"
7676
description = "The synchronous driver, new in 3.7."
77-
versions = "3.11.0-rc0,3.10.2,3.9.0,3.8.2,3.7.1"
77+
versions = "3.11.1,3.10.2,3.9.0,3.8.2,3.7.1"
7878

7979
[[drivers]]
8080
name = "mongodb-driver-legacy"
8181
description = "The legacy API for the synchronous driver.<br/>Prefer mongodb-driver-sync for new applications"
82-
versions = "3.11.0-rc0,3.10.2,3.9.0"
82+
versions = "3.11.1,3.10.2,3.9.0"
8383

8484
[[drivers]]
8585
name = "mongodb-driver-async"
8686
description = "The callback-based asynchronous driver.<br/>Prefer the Reactive Streams driver for new applications."
87-
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"
87+
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"
8888

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.11.0-rc0" >}}
25+
{{< install artifactId="bson" version="3.11.1" >}}

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.11.0-rc0" dependencies="true">}}
27+
{{< install artifactId="mongodb-driver-async" version="3.11.1" 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.11.0-rc0" dependencies="true">}}
34+
{{< install artifactId="mongodb-driver-sync" version="3.11.1" 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.11.0-rc0" dependencies="true">}}
47+
{{< install artifactId="mongodb-driver-legacy" version="3.11.1" 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.11.0-rc0" dependencies="true">}}
64+
{{< install artifactId="mongodb-driver" version="3.11.1" 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.11.0-rc0">}}
84+
{{< install artifactId="mongo-java-driver" version="3.11.1">}}

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

0 commit comments

Comments
 (0)