Merge pull request #8213 from eed3si9n/wip/banner

[2.x] Banner
This commit is contained in:
eugene yokota 2025-08-16 17:51:19 -04:00 committed by GitHub
commit 3f5b44acbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 65 deletions

View File

@ -8,73 +8,18 @@
package sbt.internal
private[sbt] object Banner {
private[sbt] object Banner:
def apply(version: String): Option[String] =
version match {
case v if v.startsWith("1.11.0") =>
version match
case v if v.startsWith("2.0.0") =>
Some(s"""
|Here are some highlights of sbt 1.11.0:
| - The Central Repository publishing
|See https://eed3si9n.com/sbt-1.11.0 for full release notes.
|Here are some highlights of sbt $version:
| - Scala 3 in metabuild
| - Common settings
| - test changed to incremental test
| - Cache system
|See https://www.scala-sbt.org/2.x/docs/en/changes/sbt-2.0-change-summary.html
|Hide the banner for this release by running `skipBanner`.
|""".stripMargin.linesIterator.mkString("\n"))
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:
| - 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:
| - `++ <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:
| - Improved JDK 17 support
| - Improved Build Server Protocol (BSP) support
| - Tab completion of global keys
|See https://eed3si9n.com/sbt-1.6.0 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:
| - Build server protocol (BSP) support
| - sbtn: a native thin client for sbt
| - VirtualFile + RemoteCache: caches build artifacts across different machines
| - ThisBuild / versionScheme to take the guessing out of eviction warning
|See http://eed3si9n.com/sbt-1.4.0 for full release notes.
|Hide the banner for this release by running `skipBanner`.
|""".stripMargin.linesIterator.mkString("\n"))
case "1.3.0" =>
Some(s"""
|Welcome to sbt $version.
|Here are some highlights of this release:
| - Coursier: new default library management using https://get-coursier.io
| - Super shell: displays actively running tasks
| - Turbo mode: makes `test` and `run` faster in interactive sessions. Try it by running `set ThisBuild / turbo := true`.
|See https://www.lightbend.com/blog/sbt-1.3.0-release for full release notes.
|Hide the banner for this release by running `skipBanner`.
|""".stripMargin.linesIterator.filter(_.nonEmpty).mkString("\n"))
case _ => None
}
}
end Banner