diff --git a/docs/_config.yml b/docs/_config.yml index 391aa29047c367363901451b04df931b6e3f0c3d..f99d5bb376027823a57749e6e5e07b4ac04a69f7 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -3,8 +3,8 @@ markdown: kramdown # These allow the documentation to be updated with nerw releases # of Spark, Scala, and Mesos. -SPARK_VERSION: 0.7.0 -SPARK_VERSION_SHORT: 0.7.0 +SPARK_VERSION: 0.7.1-SNAPSHOT +SPARK_VERSION_SHORT: 0.7.1 SCALA_VERSION: 2.9.2 MESOS_VERSION: 0.9.0-incubating SPARK_ISSUE_TRACKER_URL: https://spark-project.atlassian.net diff --git a/pom.xml b/pom.xml index a1359dac83acb70c888c6f1b7d737810db08c5bc..8f4e499ee108e42d1618a321547dc0129eba6c78 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</version> + <version>0.7.1-SNAPSHOT</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 5edac112b31ed7a761c5d66069e91ff9c620c5cc..5b241cc4ef3167314ac936842f464a17c0511f3e 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", + version := "0.7.1-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 22bcb4be8a8f8b37c9a9c2a73b6565eebc300ce9..cd7b5128b24df21611df32598db2d2cc95b74b03 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.7.0 + /___/ .__/\_,_/_/ /_/\_\ version 0.7.1 /_/ """) import Properties._