Skip to content

Commit 17ca8a1

Browse files
committed
Merge pull request alteryx#231 from pwendell/branch-0.8
Bumping version numbers for 0.8.1 release This bumps various version numbers for the release. Note that we don't bump any of the pom.xml files because they get automatically updated as part of the maven release plug-ins.
2 parents 47fce43 + d80a489 commit 17ca8a1

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
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.8.1-incubating-SNAPSHOT
7-
SPARK_VERSION_SHORT: 0.8.1-SNAPSHOT
6+
SPARK_VERSION: 0.8.1-incubating
7+
SPARK_VERSION_SHORT: 0.8.1
88
SCALA_VERSION: 2.9.3
99
MESOS_VERSION: 0.13.0
1010
SPARK_ISSUE_TRACKER_URL: https://spark-project.atlassian.net

ec2/spark_ec2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def parse_args():
6666
"slaves across multiple (an additional $0.01/Gb for bandwidth" +
6767
"between zones applies)")
6868
parser.add_option("-a", "--ami", help="Amazon Machine Image ID to use")
69-
parser.add_option("-v", "--spark-version", default="0.8.0",
69+
parser.add_option("-v", "--spark-version", default="0.8.1",
7070
help="Version of Spark to use: 'X.Y.Z' or a specific git hash")
7171
parser.add_option("--spark-git-repo",
7272
default="https://github.com/apache/incubator-spark",
@@ -157,7 +157,7 @@ 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"}
160+
spark_shark_map = {"0.7.3": "0.7.1", "0.8.0": "0.8.0", "0.8.1": "0.8.1"}
161161
version = opts.spark_version.replace("v", "")
162162
if version not in spark_shark_map:
163163
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
@@ -79,7 +79,7 @@ object SparkBuild extends Build {
7979

8080
def sharedSettings = Defaults.defaultSettings ++ Seq(
8181
organization := "org.apache.spark",
82-
version := "0.8.1-incubating-SNAPSHOT",
82+
version := "0.8.1-incubating",
8383
scalaVersion := "2.9.3",
8484
scalacOptions := Seq("-Xmax-classfile-name", "120", "-unchecked", "-deprecation",
8585
"-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.8.1-SNAPSHOT
38+
/__ / .__/\_,_/_/ /_/\_\ version 0.8.1
3939
/_/
4040
"""
4141
print "Using Python version %s (%s, %s)" % (

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class SparkILoop(in0: Option[BufferedReader], val out: PrintWriter, val master:
200200
____ __
201201
/ __/__ ___ _____/ /__
202202
_\ \/ _ \/ _ `/ __/ '_/
203-
/___/ .__/\_,_/_/ /_/\_\ version 0.8.1-SNAPSHOT
203+
/___/ .__/\_,_/_/ /_/\_\ version 0.8.1
204204
/_/
205205
""")
206206
import Properties._

0 commit comments

Comments
 (0)