mirror of https://github.com/sbt/sbt.git
commit
a4d078ebf7
|
|
@ -11,6 +11,13 @@ package sbt.internal
|
|||
private[sbt] object Banner {
|
||||
def apply(version: String): Option[String] =
|
||||
version match {
|
||||
case v if v.startsWith("1.11.0") =>
|
||||
Some(s"""
|
||||
|Here are some highlights of sbt 1.11.0:
|
||||
| - The Central Repository publishing
|
||||
|See https://eed3si9n.com/sbt-1.11.0 for full release notes.
|
||||
|Hide the banner for this release by running `skipBanner`.
|
||||
|""".stripMargin.linesIterator.mkString("\n"))
|
||||
case v if v.startsWith("1.10.0") =>
|
||||
Some(s"""
|
||||
|Here are some highlights of sbt 1.10.0:
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ object Dependencies {
|
|||
// sbt modules
|
||||
private val ioVersion = nightlyVersion.getOrElse("1.10.5")
|
||||
private val lmVersion =
|
||||
sys.props.get("sbt.build.lm.version").orElse(nightlyVersion).getOrElse("1.11.0-M1")
|
||||
sys.props.get("sbt.build.lm.version").orElse(nightlyVersion).getOrElse("1.11.0")
|
||||
val zincVersion = nightlyVersion.getOrElse("1.10.8")
|
||||
|
||||
private val sbtIO = "org.scala-sbt" %% "io" % ioVersion
|
||||
|
|
|
|||
Loading…
Reference in New Issue