Skip to content

Update scala-library, scala-reflect to 2.13.16 #1217

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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
Update scala-library, scala-reflect to 2.13.16
scala-steward committed Jan 19, 2025

Verified

This commit was signed with the committer’s verified signature.
scala-steward Scala Steward
commit b453d1fbee2bfdfe25155146f5a4e0884aa5d03b
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -205,7 +205,7 @@ def module(name: String) = {
}

lazy val algebirdCore = module("core").settings(
crossScalaVersions += "2.13.12",
crossScalaVersions += "2.13.16",
initialCommands := """
import com.twitter.algebird._
""".stripMargin('|'),
@@ -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.12",
crossScalaVersions += "2.13.16",
libraryDependencies ++=
Seq(
"org.scalacheck" %% "scalacheck" % scalacheckVersion,
@@ -266,14 +266,14 @@ lazy val algebirdBenchmark = module("benchmark")

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

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

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