Skip to content

Commit

Permalink
remove sbt version1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
adpi2 committed Apr 9, 2020
1 parent 4fd3bc8 commit 5a53709
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ object ScalaJvm {
val `2.12`: BinaryVersion = MinorBinary(2, 12)
val `2.13`: BinaryVersion = MinorBinary(2, 13)

private def stableBinaryVersions = Set(`2.10`, `2.11`, `2.12`, `2.13`)
private val stableBinaryVersions = Set(`2.10`, `2.11`, `2.12`, `2.13`)


def isValid(version: BinaryVersion): Boolean =
stableBinaryVersions.contains(version)
Expand All @@ -104,7 +105,7 @@ object ScalaJs {
val `0.6`: BinaryVersion = MinorBinary(0, 6)
val `1.x`: BinaryVersion = MajorBinary(1)

private def stableBinaryVersions = Set(`0.6`, `1.x`)
private val stableBinaryVersions = Set(`0.6`, `1.x`)

def isValid(version: BinaryVersion): Boolean =
stableBinaryVersions.contains(version)
Expand All @@ -122,9 +123,8 @@ object ScalaNative {
object SbtPlugin {
val `0.13`: BinaryVersion = MinorBinary(0, 13)
val `1.0`: BinaryVersion = MinorBinary(1, 0)
val `1.x`: BinaryVersion = MajorBinary(1)

private def stableBinaryVersions = Set(`0.13`, `1.0`, `1.x`)
private val stableBinaryVersions = Set(`0.13`, `1.0`)

def isValid(version: BinaryVersion): Boolean = {
stableBinaryVersions.contains(version)
Expand Down

0 comments on commit 5a53709

Please sign in to comment.