Skip to content

Commit c6f1c5d

Browse files
committed
Bump reference docs to 3.7.0
1 parent 8e9a543 commit c6f1c5d

File tree

9 files changed

+34
-22
lines changed

9 files changed

+34
-22
lines changed

docs/landing/data/releases.toml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
current = "3.6.2"
1+
current = "3.7.0"
22

33
[[versions]]
4-
version = "3.6.2"
4+
version = "3.7.0"
55
status = "current"
6+
docs = "./3.7"
7+
api = "./3.7/javadoc"
8+
9+
[[versions]]
10+
version = "3.6.2"
611
docs = "./3.6"
712
api = "./3.6/javadoc"
813

@@ -46,22 +51,27 @@ current = "3.6.2"
4651
docs = "./2.13"
4752
api = "http://api.mongodb.com/java/2.13"
4853

54+
[[drivers]]
55+
name = "mongodb-driver-sync"
56+
description = "The synchronous driver, new in 3.7.<br/>For older versions of the driver please use the `mongodb-driver` or `mongo-java-driver`."
57+
versions = "3.7.0"
58+
4959
[[drivers]]
5060
name = "mongodb-driver"
51-
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`."
52-
versions = "3.6.2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
61+
description = "The synchronous driver plus the legacy driver, new in 3.0.<br/>For older versions of the driver or for OSGi-based applications please use the `mongo-java-driver`."
62+
versions = "3.7.0,3.6.2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
5363

5464
[[drivers]]
5565
name = "mongo-java-driver"
5666
description = "An uber jar containing the bson library, the core library and the mongodb-driver.<br/>This artifact is a valid OSGi bundle."
57-
versions = "3.6.2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4,2.14.2,2.13.3"
67+
versions = "3.7.0,3.6.2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4,2.14.2,2.13.3"
5868

5969
[[drivers]]
6070
name = "mongodb-driver-async"
6171
description = "The new asynchronous driver, new in 3.0"
62-
versions = "3.6.2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
72+
versions = "3.7.0,3.6.2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
6373

6474
[[drivers]]
6575
name = "mongodb-driver-core"
6676
description = "The core library, new in 3.0"
67-
versions = "3.6.2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
77+
versions = "3.7.0,3.6.2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"

docs/reference/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
baseURL = "/mongo-java-driver/3.6"
1+
baseURL = "/mongo-java-driver/3.7"
22
languageCode = "en-us"
33
title = "MongoDB Java Driver"
44
theme = "mongodb"

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.6.0" >}}
25+
{{< install artifactId="bson" version="3.7.0" >}}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ The MongoDB Async Driver requires either [Netty](http://netty.io/) or Java 7.
2323

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

26-
{{< install artifactId="mongodb-driver-async" version="3.6.0" dependencies="true">}}
26+
{{< install artifactId="mongodb-driver-async" version="3.7.0" dependencies="true">}}

docs/reference/content/driver-async/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title = "MongoDB Async Driver"
99

1010
## MongoDB Async Java Driver Documentation
1111

12-
The following guide provides information on using the callback-based MongoDB Async Java Driver 3.6.
12+
The following guide provides information on using the callback-based MongoDB Async Java Driver 3.7.
1313

1414
{{% note %}}
1515
There are two higher level MongoDB Asynchronous Java Drivers available, that users may find easier to work with due to their friendlier APIs:
@@ -18,7 +18,7 @@ There are two higher level MongoDB Asynchronous Java Drivers available, that use
1818
* [MongoDB Reactive Streams Java Driver](http://mongodb.github.io/mongo-java-driver-reactivestreams/) A Reactive Streams implementation for the JVM.
1919
{{% /note %}}
2020

21-
### What's New in 3.6
21+
### What's New in 3.7
2222

2323
The [What's New]({{< relref "whats-new.md" >}}) guide explains the major new features of the driver.
2424

docs/reference/content/driver/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ title = "MongoDB Driver"
77
pre = "<i class='fa fa-arrows-h'></i>"
88
+++
99

10-
## MongoDB Driver 3.6 Documentation
10+
## MongoDB Driver 3.7 Documentation
1111

1212
The following guide provides information on using the synchronous
13-
MongoDB Java Driver 3.6.
13+
MongoDB Java Driver 3.7.
1414

15-
### What's New in 3.6
15+
### What's New in 3.7
1616

1717
The [What's New]({{< relref "whats-new.md" >}}) guide explains
1818
the major new features of the driver.

docs/reference/content/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ type = "index"
66

77
## MongoDB Java Driver Documentation
88

9-
Welcome to the MongoDB Java driver documentation hub for the 3.6 driver release.
9+
Welcome to the MongoDB Java driver documentation hub for the 3.7 driver release.
1010

1111

12-
### What's New in 3.6
12+
### What's New in 3.7
1313

14-
For key new features of 3.6, see [What's New]({{< relref "whats-new.md" >}}).
14+
For key new features of 3.7, see [What's New]({{< relref "whats-new.md" >}}).
1515

1616
### Upgrade
1717

docs/reference/content/upgrading.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
date = "2015-03-19T12:53:39-04:00"
33
title = "Upgrade Considerations"
44
[menu.main]
5-
identifier = "Upgrading to 3.6"
5+
identifier = "Upgrading to 3.7"
66
weight = 80
77
pre = "<i class='fa fa-level-up'></i>"
88
+++
99

10-
## Upgrading from 3.5.x
10+
## Upgrading from 3.6.x
1111

12-
The 3.6 release is binary and source compatible with the 3.5 release, except for methods that have been added to interfaces that
12+
The 3.7 release is binary and source compatible with the 3.5 release, except for methods that have been added to interfaces that
1313
have been marked as unstable, and changes to classes or interfaces that have been marked as internal or annotated as Beta.
1414

1515
## Upgrading from 2.x
@@ -32,6 +32,7 @@ The following table specifies the compatibility of the MongoDB Java driver for u
3232

3333
|Java Driver Version|MongoDB 2.6|MongoDB 3.0 |MongoDB 3.2|MongoDB 3.4|MongoDB 3.6|
3434
|-------------------|-----------|------------|-----------|-----------|-----------|
35+
|Version 3.7 ||||||
3536
|Version 3.6 ||||||
3637
|Version 3.5 ||||| |
3738
|Version 3.4 ||||| |
@@ -44,6 +45,7 @@ The following table specifies the compatibility of the MongoDB Java driver for u
4445

4546
|Java Driver Version|Java 5 | Java 6 | Java 7 | Java 8 |
4647
|-------------------|-------|--------|--------|--------|
48+
|Version 3.7 | ||||
4749
|Version 3.6 | ||||
4850
|Version 3.5 | ||||
4951
|Version 3.4 | ||||

docs/reference/data/mongodb.toml

Lines changed: 1 addition & 1 deletion
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.6"
4+
currentVersion = "3.7"
55
highlightTheme = "idea.css"
66
apiUrl = "/javadoc"

0 commit comments

Comments
 (0)