aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-02-06 22:35:26 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-02-06 22:35:26 -0800
commit0c37622499a0f3ae18b0f00982b12ec41074deec (patch)
treef33b4afac4fab85643ab28f709adfb13871f9be7
parentdeb926459029f5408500731957c8dbf63297e418 (diff)
downloadspark-0c37622499a0f3ae18b0f00982b12ec41074deec.tar.gz
spark-0c37622499a0f3ae18b0f00982b12ec41074deec.tar.bz2
spark-0c37622499a0f3ae18b0f00982b12ec41074deec.zip
Update version number to 0.6.2v0.6.2
-rw-r--r--project/SparkBuild.scala19
-rw-r--r--repl/src/main/scala/spark/repl/SparkILoop.scala2
2 files changed, 9 insertions, 12 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 1c427473ae..831fac65d5 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -33,7 +33,7 @@ object SparkBuild extends Build {
def sharedSettings = Defaults.defaultSettings ++ Seq(
organization := "org.spark-project",
- version := "0.6.2-SNAPSHOT",
+ version := "0.6.2",
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 },
@@ -75,16 +75,13 @@ object SparkBuild extends Build {
</developers>
),
-/*
- publishTo <<= version { (v: String) =>
- val nexus = "https://oss.sonatype.org/"
- if (v.trim.endsWith("SNAPSHOT"))
- Some("sonatype-snapshots" at nexus + "content/repositories/snapshots")
- else
- Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2")
- },
-
-*/
+ //publishTo <<= version { (v: String) =>
+ // val nexus = "https://oss.sonatype.org/"
+ // if (v.trim.endsWith("SNAPSHOT"))
+ // Some("sonatype-snapshots" at nexus + "content/repositories/snapshots")
+ // else
+ // Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2")
+ //},
libraryDependencies ++= Seq(
"org.eclipse.jetty" % "jetty-server" % "7.5.3.v20111011",
diff --git a/repl/src/main/scala/spark/repl/SparkILoop.scala b/repl/src/main/scala/spark/repl/SparkILoop.scala
index df3105fb73..d4cc3b48ed 100644
--- a/repl/src/main/scala/spark/repl/SparkILoop.scala
+++ b/repl/src/main/scala/spark/repl/SparkILoop.scala
@@ -200,7 +200,7 @@ class SparkILoop(in0: Option[BufferedReader], val out: PrintWriter, val master:
____ __
/ __/__ ___ _____/ /__
_\ \/ _ \/ _ `/ __/ '_/
- /___/ .__/\_,_/_/ /_/\_\ version 0.6.2-SNAPSHOT
+ /___/ .__/\_,_/_/ /_/\_\ version 0.6.2
/_/
""")
import Properties._