Skip to content

Commit

Permalink
Update version number to 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mateiz committed Feb 7, 2013
1 parent deb9264 commit 0c37622
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
19 changes: 8 additions & 11 deletions project/SparkBuild.scala
Expand Up @@ -33,7 +33,7 @@ object SparkBuild extends Build {


def sharedSettings = Defaults.defaultSettings ++ Seq( def sharedSettings = Defaults.defaultSettings ++ Seq(
organization := "org.spark-project", organization := "org.spark-project",
version := "0.6.2-SNAPSHOT", version := "0.6.2",
scalaVersion := "2.9.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 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 }, unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath },
Expand Down Expand Up @@ -75,16 +75,13 @@ object SparkBuild extends Build {
</developers> </developers>
), ),


/* //publishTo <<= version { (v: String) =>
publishTo <<= version { (v: String) => // val nexus = "https://oss.sonatype.org/"
val nexus = "https://oss.sonatype.org/" // if (v.trim.endsWith("SNAPSHOT"))
if (v.trim.endsWith("SNAPSHOT")) // Some("sonatype-snapshots" at nexus + "content/repositories/snapshots")
Some("sonatype-snapshots" at nexus + "content/repositories/snapshots") // else
else // Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2")
Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2") //},
},
*/


libraryDependencies ++= Seq( libraryDependencies ++= Seq(
"org.eclipse.jetty" % "jetty-server" % "7.5.3.v20111011", "org.eclipse.jetty" % "jetty-server" % "7.5.3.v20111011",
Expand Down
2 changes: 1 addition & 1 deletion repl/src/main/scala/spark/repl/SparkILoop.scala
Expand Up @@ -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._ import Properties._
Expand Down

0 comments on commit 0c37622

Please sign in to comment.