Merge pull request #417 from eed3si9n/wip/bump

util 1.9.0
This commit is contained in:
eugene yokota 2023-06-02 01:59:54 -04:00 committed by GitHub
commit 8d46a02c50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -3,14 +3,14 @@ import Keys._
import sbt.contraband.ContrabandPlugin.autoImport._
object Dependencies {
val scala212 = "2.12.17"
val scala213 = "2.13.8"
val scala212 = "2.12.18"
val scala213 = "2.13.10"
def nightlyVersion: Option[String] =
sys.env.get("BUILD_VERSION") orElse sys.props.get("sbt.build.version")
private val ioVersion = nightlyVersion.getOrElse("1.8.0")
private val utilVersion = nightlyVersion.getOrElse("1.8.0")
private val ioVersion = nightlyVersion.getOrElse("1.9.0")
private val utilVersion = nightlyVersion.getOrElse("1.9.0")
private val sbtIO = "org.scala-sbt" %% "io" % ioVersion