Merge pull request #7240 from eed3si9n/wip/bannar

sbt 1.9.0 bannar
This commit is contained in:
eugene yokota 2023-05-07 14:41:01 -04:00 committed by GitHub
commit 26e9af13ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.9.0") =>
Some(s"""
|Here are some highlights of sbt 1.9.0:
| - POM consistency of sbt plugin publishing
| - sbt new, a text-based adventure
| - Deprecation of IntegrationTest configuration
|See https://eed3si9n.com/sbt-1.9.0 for full release notes.
|Hide the banner for this release by running `skipBanner`.
|""".stripMargin.linesIterator.mkString("\n"))
case v if v.startsWith("1.7.0") =>
Some(s"""
|Here are some highlights of this release: