Skip to content

Commit 447fcc4

Browse files
committed
Bump to 3.2.0
1 parent 5163aaf commit 447fcc4

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ configure(subprojects.findAll { it.name != 'util' }) {
4545
evaluationDependsOn(':util')
4646

4747
group = 'org.mongodb'
48-
version = '3.2.0-SNAPSHOT'
48+
version = '3.2.0'
4949
sourceCompatibility = JavaVersion.VERSION_1_6
5050
targetCompatibility = JavaVersion.VERSION_1_6
5151

docs/landing/data/releases.toml

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
current = "3.1.1"
1+
current = "3.2.0"
22

33
[[versions]]
4-
version = "3.2.0-rc0"
4+
version = "3.2.0"
55
status = "current"
66
docs = "./3.2"
77
api = "http://api.mongodb.org/java/3.2"
88

99
[[versions]]
1010
version = "3.1.1"
11-
status = "current"
1211
docs = "./3.1"
1312
api = "http://api.mongodb.org/java/3.1"
1413

@@ -18,7 +17,7 @@ current = "3.1.1"
1817
api = "http://api.mongodb.org/java/3.0"
1918

2019
[[versions]]
21-
version = "2.14.0-rc0"
20+
version = "2.14.0"
2221
docs = "./2.14"
2322
api = "http://api.mongodb.org/java/2.14"
2423

@@ -30,19 +29,19 @@ current = "3.1.1"
3029
[[drivers]]
3130
name = "mongodb-driver"
3231
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`."
33-
versions = "3.2.0-rc0,3.1.1,3.0.4"
32+
versions = "3.2.0,3.1.1,3.0.4"
3433

3534
[[drivers]]
3635
name = "mongo-java-driver"
3736
description = "An uber jar containing the bson library, the core library and the mongodb-driver.<br/>This artifact is a valid OSGi bundle."
38-
versions = "3.2.0-rc0,3.1.1,3.0.4,2.14.0-rc0,2.13.3"
37+
versions = "3.2.0,3.1.1,3.0.4,2.14.0,2.13.3"
3938

4039
[[drivers]]
4140
name = "mongodb-driver-async"
4241
description = "The new asynchronous driver, new in 3.0"
43-
versions = "3.2.0-rc0,3.1.1,3.0.4"
42+
versions = "3.2.0,3.1.1,3.0.4"
4443

4544
[[drivers]]
4645
name = "mongodb-driver-core"
4746
description = "The core library, new in 3.0"
48-
versions = "3.2.0-rc0,3.1.1,3.0.4"
47+
versions = "3.2.0,3.1.1,3.0.4"

docs/reference/content/bson/installation-guide.md

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ The MongoDB Async Driver requires either [Netty](http://netty.io/) or Java 7.
2222
## MongoDB Async Driver
2323
The new asynchronous API that can leverage either Netty or Java 7's AsynchronousSocketChannel for fast and non-blocking IO.
2424

25-
{{< install artifactId="mongodb-driver-async" version="3.2.0-rc0" dependencies="true">}}
25+
{{< install artifactId="mongodb-driver-async" version="3.2.0" dependencies="true">}}

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For OSGi-based applications: due to the fact that there are classes from the `co
2828
jar (described below) instead.
2929
{{% /note %}}
3030

31-
{{< install artifactId="mongodb-driver" version="3.2.0-rc0" dependencies="true">}}
31+
{{< install artifactId="mongodb-driver" version="3.2.0" dependencies="true">}}
3232

3333

3434
## Uber MongoDB Java Driver
@@ -38,4 +38,4 @@ An uber jar that contains everything you need; the BSON library, the core librar
3838
For OSGi-based applications: this artifact is a valid OSGi bundle.
3939
{{% /note %}}
4040

41-
{{< install artifactId="mongo-java-driver" version="3.2.0-rc0">}}
41+
{{< install artifactId="mongo-java-driver" version="3.2.0">}}

docs/reference/data/mongodb.toml

+1-1
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.1"
4+
currentVersion = "3.2"
55
highlightTheme = "idea.css"
66
apiUrl = "http://api.mongodb.org/java/3.2/"

0 commit comments

Comments
 (0)