Skip to content

Commit

Permalink
Update scala-library to 2.13.15
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-git committed Oct 9, 2024
1 parent 4d8b5f1 commit 64c877c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
scala:
- 2.13.14
- 2.13.15

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 7 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ lazy val commonSettings = Seq(
organizationHomepage := Some(url("http://evolution.com")),
homepage := Some(url("http://github.com/evolution-gaming/akka-effect")),
startYear := Some(2019),
scalaVersion := "2.13.14",
scalaVersion := "2.13.15",
Compile / doc / scalacOptions ++= Seq("-groups", "-implicits", "-no-link-warnings"),
Compile / doc / scalacOptions -= "-Xfatal-warnings",
scalacOptions ++= Seq("-release:17", "-Xsource:3", "-deprecation"),
scalacOptions ++= Seq(
"-release:17",
"-Xsource:3",
"-deprecation",
"-Wconf:cat=unused-pat-vars:s", // workaround for https://github.com/scala/bug/issues/13041 (since 2.13.15)
),
releaseCrossBuild := true,
publishTo := Some(Resolver.evolutionReleases),
versionPolicyIntention := Compatibility.BinaryCompatible, // sbt-version-policy
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")

addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.14")

Expand Down

0 comments on commit 64c877c

Please sign in to comment.