diff --git a/R/pkg/DESCRIPTION b/R/pkg/DESCRIPTION index 6c380b6bfec53696dbe3ab6e65e975c7a1017be6..899d41032570a467915a0e626b6a2811df293bc7 100644 --- a/R/pkg/DESCRIPTION +++ b/R/pkg/DESCRIPTION @@ -1,6 +1,6 @@ Package: SparkR Type: Package -Version: 2.1.3 +Version: 2.1.2 Title: R Frontend for Apache Spark Description: Provides an R Frontend for Apache Spark. Authors@R: c(person("Shivaram", "Venkataraman", role = c("aut", "cre"), diff --git a/assembly/pom.xml b/assembly/pom.xml index e9f915a64a035048b63a1c8d934acaccb863a5ad..133f8e6c305d440d1944c8486af2a2f03d313524 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/common/network-common/pom.xml b/common/network-common/pom.xml index 7e203e7eede0d360d530852aed53d0853150072d..d2631e40abe7f65217baffe46cca10ec59ded176 100644 --- a/common/network-common/pom.xml +++ b/common/network-common/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/common/network-shuffle/pom.xml b/common/network-shuffle/pom.xml index 92dd275c0d08e381da4559f542ee72293ab7b12d..c12d48026484ec50c43d25f3d43b6d58f9656b8d 100644 --- a/common/network-shuffle/pom.xml +++ b/common/network-shuffle/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/common/network-yarn/pom.xml b/common/network-yarn/pom.xml index abca4183f31edbb8d54fea0694a2df245a176607..d22db36357fde6d512ea2c4e302d4ae97b234f28 100644 --- a/common/network-yarn/pom.xml +++ b/common/network-yarn/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/common/sketch/pom.xml b/common/sketch/pom.xml index 74201ac25c84e7003ff53c17f4a8ad8a8a9328d0..1dab3f6dfbc3615344cce20662f870044031e09b 100644 --- a/common/sketch/pom.xml +++ b/common/sketch/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/common/tags/pom.xml b/common/tags/pom.xml index 3f6a33177a6a5cc0d04097cc0237eefdffb9323e..dab4c3587ecff9a10f2cb71e0c2bab90cd84c5c0 100644 --- a/common/tags/pom.xml +++ b/common/tags/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/common/unsafe/pom.xml b/common/unsafe/pom.xml index 00821a95534ff3002ef7092c06633fafe51812f8..3691da4d89b94f2c09257ea3a4e11ca9f17a35a3 100644 --- a/common/unsafe/pom.xml +++ b/common/unsafe/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/core/pom.xml b/core/pom.xml index 8fe1288a178d1b8ebe5d5ef15a63e7c9f8b465c2..769b1c725e1eaf4c0bdfe2889b60048f8cc9d340 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/docs/_config.yml b/docs/_config.yml index ebe765a9a68a95b8647ce58f58dfd2b68893f306..d388d34c60b13a5970ba4bf5af805e5357e096b5 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -14,8 +14,8 @@ include: # These allow the documentation to be updated with newer releases # of Spark, Scala, and Mesos. -SPARK_VERSION: 2.1.3-SNAPSHOT -SPARK_VERSION_SHORT: 2.1.3 +SPARK_VERSION: 2.1.2 +SPARK_VERSION_SHORT: 2.1.2 SCALA_BINARY_VERSION: "2.11" SCALA_VERSION: "2.11.8" MESOS_VERSION: 1.0.0 diff --git a/examples/pom.xml b/examples/pom.xml index dbae06e660c2dc5c6dbfcbf72f3f16a28f121707..0f0a103a18b80d3dcd2244a089a5f644fb84bbff 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/external/docker-integration-tests/pom.xml b/external/docker-integration-tests/pom.xml index 422fc286f39f2c747c8219751d5a2820fe1b6a7e..312d7ba841e6cc07c208c6d30148ac4cdad9d2d7 100644 --- a/external/docker-integration-tests/pom.xml +++ b/external/docker-integration-tests/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/flume-assembly/pom.xml b/external/flume-assembly/pom.xml index c09a4c9c77fdde85aa4c00f5d0885257f61d2a24..9ccd4ee294afa9b04fbdece1850839d5c98c4ac8 100644 --- a/external/flume-assembly/pom.xml +++ b/external/flume-assembly/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/flume-sink/pom.xml b/external/flume-sink/pom.xml index 13f028106231b726202185cb3880d0fa830624b0..9b9fd92c89cf112a640c853eac195e79eef22d6b 100644 --- a/external/flume-sink/pom.xml +++ b/external/flume-sink/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/flume/pom.xml b/external/flume/pom.xml index ecae07e40da4e3177cfe34c82d0203ac94d645f7..d35a474e04a586f045de21431290293160b1939e 100644 --- a/external/flume/pom.xml +++ b/external/flume/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/java8-tests/pom.xml b/external/java8-tests/pom.xml index 03264b5edb1b301ebaeff4a5959b2e08b269ffac..b7ebc2559966678f1f1d7d9575108c42a1ac687a 100644 --- a/external/java8-tests/pom.xml +++ b/external/java8-tests/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/kafka-0-10-assembly/pom.xml b/external/kafka-0-10-assembly/pom.xml index c04fcb09e1ede4c660599651260d36a793a14127..c7bcfa6d8dde436cf4fce35d2f51fedf9d26a0d4 100644 --- a/external/kafka-0-10-assembly/pom.xml +++ b/external/kafka-0-10-assembly/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/kafka-0-10-sql/pom.xml b/external/kafka-0-10-sql/pom.xml index 336d1ea01286ca4e69e56523a18695b730f15c05..54f25822b99cd9adfc3a269a846b7da809b99dd4 100644 --- a/external/kafka-0-10-sql/pom.xml +++ b/external/kafka-0-10-sql/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/kafka-0-10/pom.xml b/external/kafka-0-10/pom.xml index 7ceb95eb3497a220b4d281620e6a22bbeeec8931..b024e3a3a646d106c5f92fa5e13102094079257d 100644 --- a/external/kafka-0-10/pom.xml +++ b/external/kafka-0-10/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/kafka-0-8-assembly/pom.xml b/external/kafka-0-8-assembly/pom.xml index c6b150c69425f1cabe2806ca2e1e711341048f03..2c22cc0140ed5f59ad970cca0bdd7bacb703d332 100644 --- a/external/kafka-0-8-assembly/pom.xml +++ b/external/kafka-0-8-assembly/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/kafka-0-8/pom.xml b/external/kafka-0-8/pom.xml index 1f530b0a71c8637b5f393220e49f360dde0eefbc..d3a7d3347ae16c80547dec11a0db5fb5720e8fa0 100644 --- a/external/kafka-0-8/pom.xml +++ b/external/kafka-0-8/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/kinesis-asl-assembly/pom.xml b/external/kinesis-asl-assembly/pom.xml index 995180816db94fd3a5007287ab4ae83f13dfea97..291ecbba038f414b1dee835c7b03f114bef6de2e 100644 --- a/external/kinesis-asl-assembly/pom.xml +++ b/external/kinesis-asl-assembly/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/kinesis-asl/pom.xml b/external/kinesis-asl/pom.xml index 546fde8743e9291ed26d7b7540b3b8dc378bed5b..f1168c5eb381881ea85043879b89512f39944dc0 100644 --- a/external/kinesis-asl/pom.xml +++ b/external/kinesis-asl/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/external/spark-ganglia-lgpl/pom.xml b/external/spark-ganglia-lgpl/pom.xml index 6c580511a19a1bda1137d7601f2f375997359805..2830c7aae4782c5e5ea22426ba96998a364eb94c 100644 --- a/external/spark-ganglia-lgpl/pom.xml +++ b/external/spark-ganglia-lgpl/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/graphx/pom.xml b/graphx/pom.xml index 626bb1324ab7fe13351adbd266c878fb0718eaab..fa42f014833d2bbb8fb3c95fba8fa0e2fa7608f3 100644 --- a/graphx/pom.xml +++ b/graphx/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/launcher/pom.xml b/launcher/pom.xml index 0ea4f645ac48ca41b0d9fe40c2fd706c0a065f8c..0de363dcd569f9a05c0d1e8a884add84fab5a27d 100644 --- a/launcher/pom.xml +++ b/launcher/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/mesos/pom.xml b/mesos/pom.xml index ffab4446565944688de31c2b82ef1c28577e17d7..5e4158f880f269c67f0ad4739b88749197162012 100644 --- a/mesos/pom.xml +++ b/mesos/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/mllib-local/pom.xml b/mllib-local/pom.xml index 212f68e6e6ef34938b95c588bf238b7ee7d8725e..80dc3bf7b03fcc701170effe61e3285edc8da40a 100644 --- a/mllib-local/pom.xml +++ b/mllib-local/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/mllib/pom.xml b/mllib/pom.xml index 739891c2cf04eeb0bbb3d9d5dbd568b8fb8b756b..7cb0991368bfafba71e3d98fdba3ce574f6a0b6c 100644 --- a/mllib/pom.xml +++ b/mllib/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/pom.xml b/pom.xml index c6d404af109bcca76e209cb54ff83629ffbeeb03..15fcef5f3883a236b06395cb3744f0b9776241fa 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ </parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <packaging>pom</packaging> <name>Spark Project Parent POM</name> <url>http://spark.apache.org/</url> diff --git a/python/pyspark/version.py b/python/pyspark/version.py index d278412197c15692356cc6ae90bf600673edeb44..ca14f2e0ffd1cc64e008c4f0522f4085aa7ac1d9 100644 --- a/python/pyspark/version.py +++ b/python/pyspark/version.py @@ -16,4 +16,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2.1.3.dev0" +__version__ = "2.1.2" diff --git a/repl/pom.xml b/repl/pom.xml index d06c4cb15be573850077f787db6ad3dadc3e8571..398902eb82facfcc4ca8b2bbda54f6420e9d09a4 100644 --- a/repl/pom.xml +++ b/repl/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/sql/catalyst/pom.xml b/sql/catalyst/pom.xml index 22b690e3e9e10dcb62798a6f1757a0d24b3efc4d..84b67782aa7567a237fa7f51277520e9639dd3a6 100644 --- a/sql/catalyst/pom.xml +++ b/sql/catalyst/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/sql/core/pom.xml b/sql/core/pom.xml index dbd450c81b7809e4fb9027c1e007259f06a01ad6..f14c5eb1c69452881ab114804abefb47c2942f64 100644 --- a/sql/core/pom.xml +++ b/sql/core/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/sql/hive-thriftserver/pom.xml b/sql/hive-thriftserver/pom.xml index d8680915c834ad730f7d648d4c2576c30da4b3e2..b00abc9dcb2c3a00defddfe1c06fc88bb0ce185b 100644 --- a/sql/hive-thriftserver/pom.xml +++ b/sql/hive-thriftserver/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/sql/hive/pom.xml b/sql/hive/pom.xml index 61e5af54ee4c7d2a733dc274f178ea3c6a6bb6ae..3bf13e01d47a016789df124545fd94dc2f403679 100644 --- a/sql/hive/pom.xml +++ b/sql/hive/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../../pom.xml</relativePath> </parent> diff --git a/streaming/pom.xml b/streaming/pom.xml index fdcacc0a980e08ee0052c7045883e2aad1f87834..812f70cf5d2ad3fb2bc568db73ec8ae2a3dbf112 100644 --- a/streaming/pom.xml +++ b/streaming/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/tools/pom.xml b/tools/pom.xml index 2cdfb3aa8888a3e484d9811553f6a4b9bc501502..4407f8692c3f8f532fb9255ddcd2d6dceb818111 100644 --- a/tools/pom.xml +++ b/tools/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/yarn/pom.xml b/yarn/pom.xml index 48c3df70dd315610f80fd539c1a41856365b43b3..0962d7a51dd2c9bc1bb1df41c734150fe6a02ac8 100644 --- a/yarn/pom.xml +++ b/yarn/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> - <version>2.1.3-SNAPSHOT</version> + <version>2.1.2</version> <relativePath>../pom.xml</relativePath> </parent>