Skip to content

Commit

Permalink
Update scala-library, scala-reflect to 2.13.12 (#1148)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Sep 15, 2023
1 parent 8ec8ce8 commit b6573cc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def module(name: String) = {
}

lazy val algebirdCore = module("core").settings(
crossScalaVersions += "2.13.11",
crossScalaVersions += "2.13.12",
initialCommands := """
import com.twitter.algebird._
""".stripMargin('|'),
Expand Down Expand Up @@ -235,7 +235,7 @@ lazy val algebirdCore = module("core").settings(
lazy val algebirdTest = module("test")
.settings(
Test / testOptions ++= Seq(Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "4")),
crossScalaVersions += "2.13.11",
crossScalaVersions += "2.13.12",
libraryDependencies ++=
Seq(
"org.scalacheck" %% "scalacheck" % scalacheckVersion,
Expand Down Expand Up @@ -266,14 +266,14 @@ lazy val algebirdBenchmark = module("benchmark")

lazy val algebirdUtil = module("util")
.settings(
crossScalaVersions += "2.13.11",
crossScalaVersions += "2.13.12",
libraryDependencies ++= Seq("com.twitter" %% "util-core" % utilVersion)
)
.dependsOn(algebirdCore, algebirdTest % "test->test")

lazy val algebirdBijection = module("bijection")
.settings(
crossScalaVersions += "2.13.11",
crossScalaVersions += "2.13.12",
libraryDependencies += "com.twitter" %% "bijection-core" % bijectionVersion
)
.dependsOn(algebirdCore, algebirdTest % "test->test")
Expand All @@ -290,7 +290,7 @@ lazy val algebirdSpark = module("spark")

lazy val algebirdGeneric = module("generic")
.settings(
crossScalaVersions += "2.13.11",
crossScalaVersions += "2.13.12",
libraryDependencies ++= Seq(
"com.chuusai" %% "shapeless" % "2.3.10",
"com.github.alexarchambault" %% "scalacheck-shapeless_1.14" % "1.2.5"
Expand Down

0 comments on commit b6573cc

Please sign in to comment.