Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala-library to 2.13.13 #64

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ trait CrossConfig {
def millVersion: String
def zincVersion: String

def scalaVersion: String = "2.13.10"
def scalaVersion: String = "2.13.13"
def millTestVersions: Seq[String] = {
val vs = millVersion match {
case SemVer(major, minor, patch, _) =>
(0 until patch.toInt).map(testPatch => s"$major.$minor.$testPatch")
}
vs :+ millVersion
}
def scalaTestVersions: Seq[String] = Seq("2.13.10", "3.2.1")
def scalaTestVersions: Seq[String] = Seq("2.13.13", "3.2.1")
def itestCrossMatrix: Seq[(String, String)] = for {
m <- millTestVersions
s <- scalaTestVersions
Expand All @@ -44,7 +44,7 @@ val crossConfigs = Seq(
new CrossConfig {
def millVersion = "0.11.6"
def zincVersion = "1.9.0"
}
},
).map(c => millPlatform(c.millVersion) -> c).toMap

val crossMillVersions = crossConfigs.keys.toSeq
Expand Down
Loading