mirror of https://github.com/sbt/sbt.git
Banner for sbt 1.10.0
This commit is contained in:
parent
ae1f829f9f
commit
bc4d5830e9
|
|
@ -11,6 +11,16 @@ package sbt.internal
|
|||
private[sbt] object Banner {
|
||||
def apply(version: String): Option[String] =
|
||||
version match {
|
||||
case v if v.startsWith("1.10.0") =>
|
||||
Some(s"""
|
||||
|Here are some highlights of sbt 1.10.0:
|
||||
| - SIP-51 support for Scala 2.13 evolution
|
||||
| - Various Zinc fixes
|
||||
| - ConsistentAnalysisFormat: new Zinc Analysis serialization
|
||||
| - CommandProgress API
|
||||
|See https://eed3si9n.com/sbt-1.10.0 for full release notes.
|
||||
|Hide the banner for this release by running `skipBanner`.
|
||||
|""".stripMargin.linesIterator.mkString("\n"))
|
||||
case v if v.startsWith("1.9.0") =>
|
||||
Some(s"""
|
||||
|Here are some highlights of sbt 1.9.0:
|
||||
|
|
|
|||
Loading…
Reference in New Issue