aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-02-25 20:30:47 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-02-25 20:30:47 -0800
commit7e67c626eee0d8448746ddcec5f01f4ffe8bdcb2 (patch)
tree7a9f50f120f6ea08b479379072dac51e941a76d8
parentc6380b174952dcd0053e8307bb4c3ba34c89e016 (diff)
downloadspark-7e67c626eee0d8448746ddcec5f01f4ffe8bdcb2.tar.gz
spark-7e67c626eee0d8448746ddcec5f01f4ffe8bdcb2.tar.bz2
spark-7e67c626eee0d8448746ddcec5f01f4ffe8bdcb2.zip
Change version number to 0.7.0
-rw-r--r--docs/_config.yml2
-rw-r--r--pom.xml2
-rw-r--r--project/SparkBuild.scala2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/_config.yml b/docs/_config.yml
index 09617e4a1e..391aa29047 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -3,7 +3,7 @@ markdown: kramdown
# These allow the documentation to be updated with nerw releases
# of Spark, Scala, and Mesos.
-SPARK_VERSION: 0.7.0-SNAPSHOT
+SPARK_VERSION: 0.7.0
SPARK_VERSION_SHORT: 0.7.0
SCALA_VERSION: 2.9.2
MESOS_VERSION: 0.9.0-incubating
diff --git a/pom.xml b/pom.xml
index ce8fa7734a..a1359dac83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.spark-project</groupId>
<artifactId>parent</artifactId>
- <version>0.7.0-SNAPSHOT</version>
+ <version>0.7.0</version>
<packaging>pom</packaging>
<name>Spark Project Parent POM</name>
<url>http://spark-project.org/</url>
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index b19bfd5f9a..5edac112b3 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -35,7 +35,7 @@ object SparkBuild extends Build {
def sharedSettings = Defaults.defaultSettings ++ Seq(
organization := "org.spark-project",
- version := "0.7.0-SNAPSHOT",
+ version := "0.7.0",
scalaVersion := "2.9.2",
scalacOptions := Seq(/*"-deprecation",*/ "-unchecked", "-optimize"), // -deprecation is too noisy due to usage of old Hadoop API, enable it once that's no longer an issue
unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath },