Skip to content

Commit 0a6c051

Browse files
committed
Merge pull request apache#918 from pwendell/branch-0.8
Update versions for 0.8.0 release.
2 parents a1307ef + 5667faa commit 0a6c051

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>0.8.0-SNAPSHOT</version>
24+
<version>0.8.0-incubating</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

bagel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>0.8.0-SNAPSHOT</version>
24+
<version>0.8.0-incubating</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>0.8.0-SNAPSHOT</version>
24+
<version>0.8.0-incubating</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.0-SNAPSHOT
6+
SPARK_VERSION: 0.8.0-incubating
77
SPARK_VERSION_SHORT: 0.8.0
88
SCALA_VERSION: 2.9.3
99
MESOS_VERSION: 0.9.0-incubating

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.7.3",
69+
parser.add_option("-v", "--spark-version", default="0.8.0",
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/mesos/spark",
@@ -155,7 +155,7 @@ def is_active(instance):
155155

156156
# Return correct versions of Spark and Shark, given the supplied Spark version
157157
def get_spark_shark_version(opts):
158-
spark_shark_map = {"0.7.3": "0.7.0"}
158+
spark_shark_map = {"0.7.3": "0.7.0", "0.8.0": "0.8.0"}
159159
version = opts.spark_version.replace("v", "")
160160
if version not in spark_shark_map:
161161
print >> stderr, "Don't know about Spark version: %s" % version

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>0.8.0-SNAPSHOT</version>
24+
<version>0.8.0-incubating</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

mllib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>0.8.0-SNAPSHOT</version>
24+
<version>0.8.0-incubating</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</parent>
2626
<groupId>org.apache.spark</groupId>
2727
<artifactId>spark-parent</artifactId>
28-
<version>0.8.0-SNAPSHOT</version>
28+
<version>0.8.0-incubating</version>
2929
<packaging>pom</packaging>
3030
<name>Spark Project Parent POM</name>
3131
<url>http://spark.incubator.apache.org/</url>

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.0-SNAPSHOT",
82+
version := "0.8.0-incubating",
8383
scalaVersion := "2.9.3",
8484
scalacOptions := Seq("-unchecked", "-optimize", "-deprecation",
8585
"-target:" + SCALAC_JVM_VERSION),

repl-bin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>0.8.0-SNAPSHOT</version>
24+
<version>0.8.0-incubating</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

0 commit comments

Comments
 (0)