From 0967e71a004d2b723d1e66e3dbc62a12726bbb94 Mon Sep 17 00:00:00 2001 From: Matei Zaharia <matei@eecs.berkeley.edu> Date: Mon, 22 Oct 2012 11:49:42 -0700 Subject: [PATCH] Bump up version to 0.7.0-SNAPSHOT for master branch --- docs/_config.yml | 4 ++-- project/SparkBuild.scala | 2 +- repl/src/main/scala/spark/repl/SparkILoop.scala | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/_config.yml b/docs/_config.yml index 5ff9fac0c2..2bd2eecc86 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.6.1-SNAPSHOT -SPARK_VERSION_SHORT: 0.6.1 +SPARK_VERSION: 0.7.0-SNAPSHOT +SPARK_VERSION_SHORT: 0.7.0 SCALA_VERSION: 2.9.2 MESOS_VERSION: 0.9.0-incubating diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala index 78b7338f4f..2f67bb9921 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.1-SNAPSHOT", + version := "0.7.0-SNAPSHOT", 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 }, diff --git a/repl/src/main/scala/spark/repl/SparkILoop.scala b/repl/src/main/scala/spark/repl/SparkILoop.scala index f640d4a028..22bcb4be8a 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.1-SNAPSHOT + /___/ .__/\_,_/_/ /_/\_\ version 0.7.0 /_/ """) import Properties._ -- GitLab