Skip to content

Commit

Permalink
Really bump Scala versions (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault authored Aug 16, 2022
1 parent 830a62a commit 2991cda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import scalajsbundler.util.JSON._
import sbtcrossproject.{crossProject, CrossType}

lazy val Version = new {
val scala213Versions = (1 to 6).map(p => s"2.13.$p")
val scala212Versions = (8 to 15).map(p => s"2.12.$p")
val scala213Versions = (1 to 8).map(p => s"2.13.$p")
val scala212Versions = (8 to 16).map(p => s"2.12.$p")
def scala213 = scala213Versions.last
def scala212 = scala212Versions.last
def scalameta = "4.5.12"
Expand Down

0 comments on commit 2991cda

Please sign in to comment.