This commit is contained in:
Eugene Yokota 2022-07-02 19:07:34 -04:00
parent 6d0ef2093d
commit 31a6c60df3
1 changed files with 9 additions and 0 deletions

View File

@ -10,6 +10,15 @@ package sbt.internal
private[sbt] object Banner {
def apply(version: String): Option[String] =
version match {
case v if v.startsWith("1.7.0") =>
Some(s"""
|Here are some highlights of this release:
| - `++ <sv> <command1>` updates
| - Scala 3 compiler error improvements
| - Improved Build Server Protocol (BSP) support
|See https://eed3si9n.com/sbt-1.7.0 for full release notes.
|Hide the banner for this release by running `skipBanner`.
|""".stripMargin.linesIterator.mkString("\n"))
case v if v.startsWith("1.6.0") =>
Some(s"""
|Here are some highlights of this release: