Skip to content

Commit 0c37622

Browse files
committed
Update version number to 0.6.2
1 parent deb9264 commit 0c37622

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

project/SparkBuild.scala

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ object SparkBuild extends Build {
3333

3434
def sharedSettings = Defaults.defaultSettings ++ Seq(
3535
organization := "org.spark-project",
36-
version := "0.6.2-SNAPSHOT",
36+
version := "0.6.2",
3737
scalaVersion := "2.9.2",
3838
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
3939
unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath },
@@ -75,16 +75,13 @@ object SparkBuild extends Build {
7575
</developers>
7676
),
7777

78-
/*
79-
publishTo <<= version { (v: String) =>
80-
val nexus = "https://oss.sonatype.org/"
81-
if (v.trim.endsWith("SNAPSHOT"))
82-
Some("sonatype-snapshots" at nexus + "content/repositories/snapshots")
83-
else
84-
Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2")
85-
},
86-
87-
*/
78+
//publishTo <<= version { (v: String) =>
79+
// val nexus = "https://oss.sonatype.org/"
80+
// if (v.trim.endsWith("SNAPSHOT"))
81+
// Some("sonatype-snapshots" at nexus + "content/repositories/snapshots")
82+
// else
83+
// Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2")
84+
//},
8885

8986
libraryDependencies ++= Seq(
9087
"org.eclipse.jetty" % "jetty-server" % "7.5.3.v20111011",

repl/src/main/scala/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.6.2-SNAPSHOT
203+
/___/ .__/\_,_/_/ /_/\_\ version 0.6.2
204204
/_/
205205
""")
206206
import Properties._

0 commit comments

Comments
 (0)