Skip to content

Commit 9dcac4f

Browse files
committed
Add 3.3 version to reference documentation
1 parent 10a399d commit 9dcac4f

File tree

13 files changed

+36
-31
lines changed

13 files changed

+36
-31
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Release notes are available [here](https://github.com/mongodb/mongo-java-driver/
44

55
## API Documentation:
66

7-
Javadoc for all major and minor releases is available [here](http://api.mongodb.org/java/).
7+
Javadoc for all major and minor releases is available [here](http://api.mongodb.com/java/).
88

99
## Support / Feedback
1010

docs/landing/data/releases.toml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,52 @@
1-
current = "3.2.2"
1+
current = "3.3.0"
22

33
[[versions]]
4-
version = "3.2.2"
4+
version = "3.3.0"
55
status = "current"
6+
docs = "./3.3"
7+
api = "http://api.mongodb.com/java/3.3"
8+
9+
[[versions]]
10+
version = "3.2.2"
611
docs = "./3.2"
7-
api = "http://api.mongodb.org/java/3.2"
12+
api = "http://api.mongodb.com/java/3.2"
813

914
[[versions]]
1015
version = "3.1.1"
1116
docs = "./3.1"
12-
api = "http://api.mongodb.org/java/3.1"
17+
api = "http://api.mongodb.com/java/3.1"
1318

1419
[[versions]]
1520
version = "3.0.4"
1621
docs = "./3.0"
17-
api = "http://api.mongodb.org/java/3.0"
22+
api = "http://api.mongodb.com/java/3.0"
1823

1924
[[versions]]
2025
version = "2.14.2"
2126
docs = "./2.14"
22-
api = "http://api.mongodb.org/java/2.14"
27+
api = "http://api.mongodb.com/java/2.14"
2328

2429
[[versions]]
2530
version = "2.13.3"
2631
docs = "./2.13"
27-
api = "http://api.mongodb.org/java/2.13"
32+
api = "http://api.mongodb.com/java/2.13"
2833

2934
[[drivers]]
3035
name = "mongodb-driver"
3136
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`."
32-
versions = "3.2.2,3.1.1,3.0.4"
37+
versions = "3.3.0,3.2.2,3.1.1,3.0.4"
3338

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

3944
[[drivers]]
4045
name = "mongodb-driver-async"
4146
description = "The new asynchronous driver, new in 3.0"
42-
versions = "3.2.2,3.1.1,3.0.4"
47+
versions = "3.3.0,3.2.2,3.1.1,3.0.4"
4348

4449
[[drivers]]
4550
name = "mongodb-driver-core"
4651
description = "The core library, new in 3.0"
47-
versions = "3.2.2,3.1.1,3.0.4"
52+
versions = "3.3.0,3.2.2,3.1.1,3.0.4"

docs/landing/static/versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"version": "3.2"}, {"version": "3.1"}, {"version": "3.0"}, {"version": "2.13"}, {"version": "2.14"}]
1+
[{"version": "3.3"}, {"version": "3.2"}, {"version": "3.1"}, {"version": "3.0"}, {"version": "2.13"}, {"version": "2.14"}]

docs/reference/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
baseurl = "/mongo-java-driver/3.2"
1+
baseurl = "/mongo-java-driver/3.3"
22
languageCode = "en-us"
33
title = "MongoDB Java Driver"
44
theme = "mongodb"
@@ -14,7 +14,7 @@ canonifyurls = false
1414
pre = "<i class='fa fa-file-text-o'></i>"
1515
weight = 90
1616
identifier = "apiDocs"
17-
url = "http://api.mongodb.org/java/3.2"
17+
url = "http://api.mongodb.com/java/3.3"
1818

1919
[[menu.main]]
2020
name = "Source Code"

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

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

Lines changed: 1 addition & 1 deletion
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.2" dependencies="true">}}
25+
{{< install artifactId="mongodb-driver-async" version="3.3.0" dependencies="true">}}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ title = "Installation Guide"
1010

1111
# Installation
1212

13-
There are two Maven artifacts available in the 3.2 release. The preferred artifact for new applications is `mongodb-driver`
13+
jThere are two Maven artifacts available in the 3.3 release. The preferred artifact for new applications is `mongodb-driver`;
1414
however, we still publish the legacy `mongo-java-driver` uber-jar.
1515
The recommended way to get started using one of the drivers in your project is with a dependency management system.
1616

@@ -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.2" dependencies="true">}}
31+
{{< install artifactId="mongodb-driver" version="3.3.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.2">}}
41+
{{< install artifactId="mongo-java-driver" version="3.3.0">}}

docs/reference/content/driver/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ title = "MongoDB Driver"
1212
Welcome to the MongoDB Driver documentation hub.
1313

1414

15-
### What's New in 3.2
15+
### What's New in 3.3
1616

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title = "Reference"
1111
## Reference
1212

1313
The reference documentation for the Java driver focuses on high-level documentation and use-cases. The Javadoc-generated API reference is
14-
[here](http://api.mongodb.org/java/3.2/).
14+
[here](http://api.mongodb.com/java/3.3/).
1515

1616
- [Connecting]({{< relref "driver/reference/connecting/index.md" >}}): Documentation of the driver's support for connecting to MongoDB servers
1717
- [CRUD]({{< relref "driver/reference/crud/index.md" >}}): Documentation of the driver's support for CRUD operations

docs/reference/content/index.md

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

77
## MongoDB Java Driver Documentation
88

9-
Welcome to the MongoDB Java driver documentation hub for the 3.2 driver release.
9+
Welcome to the MongoDB Java driver documentation hub for the 3.3 driver release.
1010

1111

12-
### What's New in 3.2
12+
### What's New in 3.3
1313

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

16-
If you are upgrading from the 3.1.x series of the driver, consult the [Upgrading]({{< relref "whats-new/upgrading.md" >}}) documentation
16+
If you are upgrading from the 3.2.x series of the driver, consult the [Upgrading]({{< relref "whats-new/upgrading.md" >}}) documentation
1717
for information on breaking changes. If you are upgrading from the 2.x series of the driver, please consult the 3.0 reference
1818
documentation as well.
1919

0 commit comments

Comments
 (0)