mirror of https://github.com/sbt/sbt.git
Bump versions
git-svn-id: https://simple-build-tool.googlecode.com/svn/trunk@889 d89573ee-9141-11dd-94d4-bdf5e562f29c
This commit is contained in:
parent
ab7bdaedab
commit
443984daf9
|
|
@ -4,12 +4,12 @@
|
||||||
package sbt.boot
|
package sbt.boot
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Project does not exist, create new project? [y/N] y
|
Project does not exist, create new project? [y/N/s] y
|
||||||
Name:
|
Name:
|
||||||
Organization []:
|
Organization []:
|
||||||
Version [1.0]:
|
Version [1.0]:
|
||||||
Scala version [2.7.5]:
|
Scala version [2.7.5]:
|
||||||
sbt version [0.5.1]:
|
sbt version [0.5.2]:
|
||||||
*/
|
*/
|
||||||
import java.io.File
|
import java.io.File
|
||||||
/** Constants related to reading/writing the build.properties file in a project.
|
/** Constants related to reading/writing the build.properties file in a project.
|
||||||
|
|
@ -48,7 +48,7 @@ private object ProjectProperties
|
||||||
/** The default version of the new user project when the user doesn't explicitly specify a version when prompted.*/
|
/** The default version of the new user project when the user doesn't explicitly specify a version when prompted.*/
|
||||||
val DefaultVersion = "1.0"
|
val DefaultVersion = "1.0"
|
||||||
/** The default version of sbt when the user doesn't explicitly specify a version when prompted.*/
|
/** The default version of sbt when the user doesn't explicitly specify a version when prompted.*/
|
||||||
val DefaultSbtVersion = "0.5.1"
|
val DefaultSbtVersion = "0.5.2"
|
||||||
/** The default version of Scala when the user doesn't explicitly specify a version when prompted.*/
|
/** The default version of Scala when the user doesn't explicitly specify a version when prompted.*/
|
||||||
val DefaultScalaVersion = "2.7.5"
|
val DefaultScalaVersion = "2.7.5"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#Project properties
|
#Project properties
|
||||||
#Thu Jun 25 14:31:30 EDT 2009
|
#Sun Jul 26 22:17:46 EDT 2009
|
||||||
project.organization=org.scala-tools.sbt
|
project.organization=org.scala-tools.sbt
|
||||||
project.name=extract
|
project.name=extract
|
||||||
sbt.version=0.5.1
|
sbt.version=0.5.2
|
||||||
project.version=0.1
|
project.version=0.2
|
||||||
scala.version=2.7.5
|
scala.version=2.7.4
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#Project properties
|
#Project properties
|
||||||
#Sat Jul 04 12:43:34 EDT 2009
|
#Sat Jul 25 19:50:26 EDT 2009
|
||||||
project.organization=sbt
|
project.organization=sbt
|
||||||
project.name=Simple Build Tool Parent
|
project.name=Simple Build Tool Parent
|
||||||
sbt.version=0.5.1
|
sbt.version=0.5.2
|
||||||
project.version=0.5.2-p1
|
project.version=0.5.3-SNAPSHOT
|
||||||
scala.version=2.7.2
|
scala.version=2.7.2
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ class SbtProject(info: ProjectInfo) extends ParentProject(info)
|
||||||
override def publishLocalAction = noAction
|
override def publishLocalAction = noAction
|
||||||
}
|
}
|
||||||
|
|
||||||
protected class MainProject(val info: ProjectInfo) extends CrossCompileProject with test.ScalaScripted
|
protected class MainProject(val info: ProjectInfo) extends CrossCompileProject with test.SbtScripted
|
||||||
{
|
{
|
||||||
override def mainSources =
|
override def mainSources =
|
||||||
if(ScalaVersion.currentString.startsWith("2.8")) // cannot compile against test libraries currently
|
if(ScalaVersion.currentString.startsWith("2.8")) // cannot compile against test libraries currently
|
||||||
|
|
|
||||||
|
|
@ -2,5 +2,5 @@ import sbt._
|
||||||
|
|
||||||
class Plugins(info: ProjectInfo) extends PluginDefinition(info)
|
class Plugins(info: ProjectInfo) extends PluginDefinition(info)
|
||||||
{
|
{
|
||||||
val scripted = "org.scala-tools.sbt" % "test" % "0.5.1"
|
val scripted = "org.scala-tools.sbt" % "test" % "0.5.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
#Project properties
|
#Project properties
|
||||||
#Wed Jul 01 23:57:40 EDT 2009
|
#Sat Jul 25 23:01:36 EDT 2009
|
||||||
project.organization=org.scala-tools.sbt
|
project.organization=org.scala-tools.sbt
|
||||||
project.name=test
|
project.name=test
|
||||||
sbt.version=0.5.1
|
sbt.version=0.5.2
|
||||||
project.version=0.5.1
|
project.version=0.5.2
|
||||||
scala.version=2.7.5
|
scala.version=2.7.5
|
||||||
project.initialize=false
|
project.initialize=false
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue