Skip to content

Commit

Permalink
Update scala-library, scala-reflect to 2.12.20
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored and cchantep committed Nov 1, 2024
1 parent fc90654 commit bca8b75
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
working_directory: ~/repo

environment:
SCALA_VERSION: 2.12.17
SCALA_VERSION: 2.12.20

steps:
- checkout
Expand All @@ -137,7 +137,7 @@ jobs:
working_directory: ~/repo

environment:
SCALA_VERSION: 2.13.12
SCALA_VERSION: 2.13.15

steps:
- checkout
Expand Down
3 changes: 0 additions & 3 deletions codestyle.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,5 @@ inThisBuild(
// scalaVersion := "2.13.3",
semanticdbEnabled := true,
semanticdbVersion := scalafixSemanticdb.revision,
scalafixDependencies ++= Seq(
"com.github.liancheng" %% "organize-imports" % "0.6.0"
)
)
)
19 changes: 10 additions & 9 deletions compiler.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ThisBuild / scalaVersion := "2.12.17"
ThisBuild / scalaVersion := "2.12.20"

ThisBuild / crossScalaVersions := Seq(
"2.11.12",
scalaVersion.value,
"2.13.10",
"2.13.15",
"3.4.2"
)

Expand All @@ -25,12 +25,13 @@ ThisBuild / scalacOptions ++= {
"-Xlint",
"-g:vars"
)
} else Seq(
"-Wconf:msg=.*should\\ not\\ .*infix\\ operator.*:s",
"-Wconf:msg=.*vararg\\ splices.*:s",
"-Wconf:msg=.*with\\ as\\ a\\ type\\ operator.*:s",
"-Wconf:msg=.*deprecated\\ for\\ wildcard\\ arguments.*:s"
)
} else
Seq(
"-Wconf:msg=.*should\\ not\\ .*infix\\ operator.*:s",
"-Wconf:msg=.*vararg\\ splices.*:s",
"-Wconf:msg=.*with\\ as\\ a\\ type\\ operator.*:s",
"-Wconf:msg=.*deprecated\\ for\\ wildcard\\ arguments.*:s"
)
}

ThisBuild / scalacOptions ++= {
Expand Down Expand Up @@ -90,7 +91,7 @@ Test / console / scalacOptions ~= filteredScalacOpts
// Silencer
ThisBuild / libraryDependencies ++= {
if (!scalaBinaryVersion.value.startsWith("3")) {
val silencerVersion = "1.17.13"
val silencerVersion = "1.7.19"

Seq(
compilerPlugin(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")

addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")

addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")

addSbtPlugin("cchantep" % "sbt-velocity" % "0.1")

0 comments on commit bca8b75

Please sign in to comment.