Skip to content

Commit b658f17

Browse files
committed
Bump to 2.14.0
1 parent 94940a5 commit b658f17

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ javac.source=1.5
2020
# lib.version=2.8.0-SNAPSHOT ==> lib.version.osgi.compat=2.8.0.BUILD-SNAPSHOT
2121
# lib.version=2.8.0-rc1 ==> lib.version.osgi.compat=2.8.0.RC1
2222
# lib.version=2.8.0 ==> lib.version.osgi.compat=2.8.0.RELEASE
23-
lib.version=2.14.0-SNAPSHOT
24-
lib.version.osgi.compat=2.14.0.BUILD-SNAPSHOT
23+
lib.version=2.14.0
24+
lib.version.osgi.compat=2.14.0.RELEASE
2525

2626
compatibility.baseline.version=2.13.0

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ The recommended way to get started using one of the drivers in your project is w
1717

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

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

2222
## BSON
2323

2424
This library comprehensively supports [BSON](http://www.bsonspec.org),
2525
the data storage and network transfer format that MongoDB uses for "documents".
2626
BSON is short for Binary [JSON](http://json.org/), is a binary-encoded serialization of JSON-like documents.
2727

28-
{{< install artifactId="bson" version="2.14.0-rc0" >}}
28+
{{< install artifactId="bson" version="2.14.0" >}}

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ driver developers who would rather use Maven than Ant as their build tool.
88
<artifactId>mongo-java-driver</artifactId>
99
<packaging>bundle</packaging>
1010
<name>MongoDB Java Driver</name>
11-
<version>2.14.0-SNAPSHOT</version>
11+
<version>2.14.0</version>
1212
<description>The MongoDB Java driver</description>
1313
<url>http://www.mongodb.org</url>
1414

src/main/com/mongodb/Mongo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class Mongo {
8989
@Deprecated
9090
public static final int MINOR_VERSION = 14;
9191

92-
private static final String FULL_VERSION = "2.14.0-rc0";
92+
private static final String FULL_VERSION = "2.14.0";
9393

9494
static int cleanerIntervalMS;
9595

0 commit comments

Comments
 (0)