Skip to content

Commit

Permalink
Bump to 2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jyemin committed Dec 7, 2015
1 parent 94940a5 commit b658f17
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ javac.source=1.5
# lib.version=2.8.0-SNAPSHOT ==> lib.version.osgi.compat=2.8.0.BUILD-SNAPSHOT
# lib.version=2.8.0-rc1 ==> lib.version.osgi.compat=2.8.0.RC1
# lib.version=2.8.0 ==> lib.version.osgi.compat=2.8.0.RELEASE
lib.version=2.14.0-SNAPSHOT
lib.version.osgi.compat=2.14.0.BUILD-SNAPSHOT
lib.version=2.14.0
lib.version.osgi.compat=2.14.0.RELEASE

compatibility.baseline.version=2.13.0
4 changes: 2 additions & 2 deletions docs/reference/content/getting-started/installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ The recommended way to get started using one of the drivers in your project is w

This jar that contains everything you need including the BSON library.

{{< install artifactId="mongo-java-driver" version="2.14.0-rc0" >}}
{{< install artifactId="mongo-java-driver" version="2.14.0" >}}

## BSON

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="2.14.0-rc0" >}}
{{< install artifactId="bson" version="2.14.0" >}}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ driver developers who would rather use Maven than Ant as their build tool.
<artifactId>mongo-java-driver</artifactId>
<packaging>bundle</packaging>
<name>MongoDB Java Driver</name>
<version>2.14.0-SNAPSHOT</version>
<version>2.14.0</version>
<description>The MongoDB Java driver</description>
<url>http://www.mongodb.org</url>

Expand Down
2 changes: 1 addition & 1 deletion src/main/com/mongodb/Mongo.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class Mongo {
@Deprecated
public static final int MINOR_VERSION = 14;

private static final String FULL_VERSION = "2.14.0-rc0";
private static final String FULL_VERSION = "2.14.0";

static int cleanerIntervalMS;

Expand Down

0 comments on commit b658f17

Please sign in to comment.