Skip to content

Commit c9a22e8

Browse files
committed
[branch-0.9] bump versions for v0.9.2 release candidate
Manually update some version numbers. Author: Xiangrui Meng <meng@databricks.com> Closes #1458 from mengxr/v0.9.2-rc and squashes the following commits: 2c38419 [Xiangrui Meng] Merge remote-tracking branch 'apache/branch-0.9' into v0.9.2-rc 7d0fb76 [Xiangrui Meng] change tree/master to tree/branch-0.9 in docs ea2b205 [Xiangrui Meng] update version in SparkBuild 162af66 [Xiangrui Meng] Merge remote-tracking branch 'apache/branch-0.9' into v0.9.2-rc bc87035 [Xiangrui Meng] bump version numbers to 0.9.2
1 parent 60f4b3b commit c9a22e8

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ markdown: kramdown
33

44
# These allow the documentation to be updated with nerw releases
55
# of Spark, Scala, and Mesos.
6-
SPARK_VERSION: 0.9.1
7-
SPARK_VERSION_SHORT: 0.9.1
6+
SPARK_VERSION: 0.9.2
7+
SPARK_VERSION_SHORT: 0.9.2
88
SCALA_BINARY_VERSION: "2.10"
99
SCALA_VERSION: "2.10.3"
1010
MESOS_VERSION: 0.13.0

ec2/spark_ec2.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def parse_args():
7070
"slaves across multiple (an additional $0.01/Gb for bandwidth" +
7171
"between zones applies)")
7272
parser.add_option("-a", "--ami", help="Amazon Machine Image ID to use")
73-
parser.add_option("-v", "--spark-version", default="0.9.1",
73+
parser.add_option("-v", "--spark-version", default="0.9.2",
7474
help="Version of Spark to use: 'X.Y.Z' or a specific git hash")
7575
parser.add_option("--spark-git-repo",
7676
default="https://github.com/apache/spark",
@@ -157,7 +157,8 @@ def is_active(instance):
157157

158158
# Return correct versions of Spark and Shark, given the supplied Spark version
159159
def get_spark_shark_version(opts):
160-
spark_shark_map = {"0.7.3": "0.7.1", "0.8.0": "0.8.0", "0.8.1": "0.8.1", "0.9.0": "0.9.0", "0.9.1": "0.9.1"}
160+
spark_shark_map = {"0.7.3": "0.7.1", "0.8.0": "0.8.0", "0.8.1": "0.8.1", \
161+
"0.9.0": "0.9.0", "0.9.1": "0.9.1", "0.9.2": "0.9.2"}
161162
version = opts.spark_version.replace("v", "")
162163
if version not in spark_shark_map:
163164
print >> stderr, "Don't know about Spark version: %s" % version

project/SparkBuild.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ object SparkBuild extends Build {
134134

135135
def sharedSettings = Defaults.defaultSettings ++ Seq(
136136
organization := "org.apache.spark",
137-
version := "0.9.2-SNAPSHOT",
137+
version := "0.9.2",
138138
scalaVersion := "2.10.3",
139139
scalacOptions := Seq("-Xmax-classfile-name", "120", "-unchecked", "-deprecation",
140140
"-target:" + SCALAC_JVM_VERSION),

python/pyspark/shell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
____ __
3636
/ __/__ ___ _____/ /__
3737
_\ \/ _ \/ _ `/ __/ '_/
38-
/__ / .__/\_,_/_/ /_/\_\ version 0.9.1
38+
/__ / .__/\_,_/_/ /_/\_\ version 0.9.2
3939
/_/
4040
"""
4141
print "Using Python version %s (%s, %s)" % (

repl/src/main/scala/org/apache/spark/repl/SparkILoopInit.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ trait SparkILoopInit {
2424
____ __
2525
/ __/__ ___ _____/ /__
2626
_\ \/ _ \/ _ `/ __/ '_/
27-
/___/ .__/\_,_/_/ /_/\_\ version 0.9.1
27+
/___/ .__/\_,_/_/ /_/\_\ version 0.9.2
2828
/_/
2929
""")
3030
import Properties._

yarn/alpha/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.apache.spark</groupId>
2222
<artifactId>yarn-parent_2.10</artifactId>
23-
<version>0.9.1</version>
23+
<version>0.9.2</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626

0 commit comments

Comments
 (0)