Merge pull request #5922 from eed3si9n/wip/bumpio

IO 1.4.0
This commit is contained in:
eugene yokota 2020-10-04 01:41:41 -04:00 committed by GitHub
commit 49f3deae7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 3 deletions

View File

@ -11,10 +11,11 @@ ThisBuild / version := {
val v = "1.4.0-SNAPSHOT"
nightlyVersion.getOrElse(v)
}
ThisBuild / versionScheme := Some("early-semver")
ThisBuild / scalafmtOnCompile := !(Global / insideCI).value
ThisBuild / Test / scalafmtOnCompile := !(Global / insideCI).value
ThisBuild / turbo := true
ThisBuild / SettingKey[Boolean]("usePipelining") := !(Global / insideCI).value
ThisBuild / usePipelining := !(Global / insideCI).value
val excludeLint = SettingKey[Set[Def.KeyedInitialize[_]]]("excludeLintKeys")
Global / excludeLint := (Global / excludeLint).?.value.getOrElse(Set.empty)

View File

@ -17,7 +17,7 @@ private[sbt] object Banner {
| - 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-beta for full release notes.
|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" =>

View File

@ -11,7 +11,7 @@ object Dependencies {
def nightlyVersion = sys.props.get("sbt.build.version")
// sbt modules
private val ioVersion = nightlyVersion.getOrElse("1.4.0-M8")
private val ioVersion = nightlyVersion.getOrElse("1.4.0")
private val lmVersion =
sys.props.get("sbt.build.lm.version").orElse(nightlyVersion).getOrElse("1.4.0-M3")
val zincVersion = nightlyVersion.getOrElse("1.4.0-M13")

View File

@ -1,3 +1,5 @@
ThisBuild / useCoursier := false
scalacOptions ++= Seq("-feature", "-language:postfixOps", "-Ywarn-unused:_,-imports")
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.0.0")