mirror of https://github.com/sbt/sbt.git
commit
26e9af13ec
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue