Banner for sbt 1.10.0

This commit is contained in:
Eugene Yokota 2024-05-05 22:38:05 -04:00
parent ae1f829f9f
commit bc4d5830e9
1 changed files with 10 additions and 0 deletions

View File

@ -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: