diff --git a/main/src/main/scala/sbt/internal/Banner.scala b/main/src/main/scala/sbt/internal/Banner.scala index 24e3a9f6b..7ce38b461 100644 --- a/main/src/main/scala/sbt/internal/Banner.scala +++ b/main/src/main/scala/sbt/internal/Banner.scala @@ -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: