Skip to content

Commit 7a2d925

Browse files
Merge pull request #17 from rozza/d11636
Update version to 2.2.2
2 parents 27ebac9 + f8c3eef commit 7a2d925

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

source/includes/extracts-command-line.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ content: |
3939
4040
./bin/spark-shell --conf "spark.mongodb.input.uri=mongodb://127.0.0.1/test.myCollection?readPreference=primaryPreferred" \
4141
--conf "spark.mongodb.output.uri=mongodb://127.0.0.1/test.myCollection" \
42-
--packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.0
42+
--packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.2
4343
4444
.. include:: /includes/extracts/list-configuration-explanation.rst
4545
@@ -56,7 +56,7 @@ content: |
5656
5757
./bin/pyspark --conf "spark.mongodb.input.uri=mongodb://127.0.0.1/test.myCollection?readPreference=primaryPreferred" \
5858
--conf "spark.mongodb.output.uri=mongodb://127.0.0.1/test.myCollection" \
59-
--packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.0
59+
--packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.2
6060
6161
.. include:: /includes/extracts/list-configuration-explanation.rst
6262
@@ -73,7 +73,7 @@ content: |
7373
7474
./bin/sparkR --conf "spark.mongodb.input.uri=mongodb://127.0.0.1/test.myCollection?readPreference=primaryPreferred" \
7575
--conf "spark.mongodb.output.uri=mongodb://127.0.0.1/test.myCollection" \
76-
--packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.0
76+
--packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.2
7777
7878
.. include:: /includes/extracts/list-configuration-explanation.rst
7979
...

source/index.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MongoDB Connector for Spark
66

77
.. admonition:: Announcements
88

9-
- **July 13, 2017**, `MongoDB Connector for Spark v2.2.0
9+
- **July 13, 2017**, `MongoDB Connector for Spark v2.2.2
1010
<https://www.mongodb.com/products/spark-connector>`_ Released.
1111

1212
- **July 12, 2017**, `MongoDB Connector for Spark v2.1.0
@@ -44,8 +44,8 @@ versions of Apache Spark and MongoDB:
4444
- Spark Version
4545
- MongoDB Version
4646

47-
* - 2.2.0
48-
- 2.2.x
47+
* - 2.2.2
48+
- 2.2.x or 2.3.x
4949
- 2.6 or later
5050

5151
* - 2.1.0

source/java-api.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ The following excerpt is from a Maven ``pom.xml`` file:
3333
<dependency>
3434
<groupId>org.apache.spark</groupId>
3535
<artifactId>spark-core_2.11</artifactId>
36-
<version>2.2.0</version>
36+
<version>2.2.2</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>org.mongodb.spark</groupId>
4040
<artifactId>mongo-spark-connector_2.11</artifactId>
41-
<version>2.2.0</version>
41+
<version>2.2.2</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>org.apache.spark</groupId>
4545
<artifactId>spark-sql_2.11</artifactId>
46-
<version>2.2.0</version>
46+
<version>2.2.2</version>
4747
</dependency>
4848
</dependencies>
4949

source/scala-api.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ a `SBT <http://www.scala-sbt.org/documentation.html>`_ ``build.scala`` file:
6464

6565
scalaVersion := "2.11.7",
6666
libraryDependencies ++= Seq(
67-
"org.mongodb.spark" %% "mongo-spark-connector" % "2.2.0",
68-
"org.apache.spark" %% "spark-core" % "2.2.0",
69-
"org.apache.spark" %% "spark-sql" % "2.2.0"
67+
"org.mongodb.spark" %% "mongo-spark-connector" % "2.2.2",
68+
"org.apache.spark" %% "spark-core" % "2.2.2",
69+
"org.apache.spark" %% "spark-sql" % "2.2.2"
7070
)
7171

7272
Configuration

0 commit comments

Comments
 (0)