Skip to content

Commit

Permalink
Bump to 3.6.0-rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
jyemin committed Nov 20, 2017
1 parent fb45ab1 commit 1b7479e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ configure(subprojects.findAll { it.name != 'util' }) {
evaluationDependsOn(':util')

group = 'org.mongodb'
version = '3.6.0-SNAPSHOT'
version = '3.6.0-rc0'
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6

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.5.0"

[[versions]]
version = "3.6.0-beta2"
version = "3.6.0-rc0"
docs = "./3.6"
api = "./3.6/javadoc"

Expand Down Expand Up @@ -49,19 +49,19 @@ current = "3.5.0"
[[drivers]]
name = "mongodb-driver"
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`."
versions = "3.6.0-beta2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
versions = "3.6.0-rc0,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"

[[drivers]]
name = "mongo-java-driver"
description = "An uber jar containing the bson library, the core library and the mongodb-driver.<br/>This artifact is a valid OSGi bundle."
versions = "3.6.0-beta2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4,2.14.2,2.13.3"
versions = "3.6.0-rc0,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4,2.14.2,2.13.3"

[[drivers]]
name = "mongodb-driver-async"
description = "The new asynchronous driver, new in 3.0"
versions = "3.6.0-beta2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
versions = "3.6.0-rc0,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"

[[drivers]]
name = "mongodb-driver-core"
description = "The core library, new in 3.0"
versions = "3.6.0-beta2,3.5.0,3.4.3,3.3.0,3.2.2,3.1.1,3.0.4"
versions = "3.6.0-rc0,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.6.0-beta2" >}}
{{< install artifactId="bson" version="3.6.0-rc0" >}}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ The MongoDB Async Driver requires either [Netty](http://netty.io/) or Java 7.

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.6.0-beta2" dependencies="true">}}
{{< install artifactId="mongodb-driver-async" version="3.6.0-rc0" dependencies="true">}}
4 changes: 2 additions & 2 deletions docs/reference/content/driver/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For OSGi-based applications, use the [mongo-java-driver](#uber-jar-legacy) uber

{{% /note %}}

{{< install artifactId="mongodb-driver" version="3.6.0-beta2" dependencies="true">}}
{{< install artifactId="mongodb-driver" version="3.6.0-rc0" dependencies="true">}}


## Uber Jar (Legacy)
Expand All @@ -41,4 +41,4 @@ For new applications, the preferred artifact is [mongodb-driver](#mongodb-driver
The `mongo-java-driver` artifact is a valid OSGi bundle.
{{% /note %}}

{{< install artifactId="mongo-java-driver" version="3.6.0-beta2">}}
{{< install artifactId="mongo-java-driver" version="3.6.0-rc0">}}
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.6.0-beta2.jar"/>
<resource-root path="mongo-java-driver-3.6.0-rc0.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
Expand Down

0 comments on commit 1b7479e

Please sign in to comment.