mirror of https://github.com/sbt/sbt.git
Update banner
This commit is contained in:
parent
bdccb6cbd5
commit
2f2ceeb9c9
|
|
@ -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.6.0") =>
|
||||
Some(s"""
|
||||
|Here are some highlights of this release:
|
||||
| - Improved JDK 17 support
|
||||
| - Improved Build Server Protocol (BSP) support
|
||||
| - Tab completion of global keys
|
||||
|See https://eed3si9n.com/sbt-1.6.0-beta for full release notes.
|
||||
|Hide the banner for this release by running `skipBanner`.
|
||||
|""".stripMargin.linesIterator.mkString("\n"))
|
||||
case v if v.startsWith("1.4.0") =>
|
||||
Some(s"""
|
||||
|Here are some highlights of this release:
|
||||
|
|
|
|||
Loading…
Reference in New Issue