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, scala-reflect to 2.12.16 #1066

Merged
merged 4 commits into from
Aug 24, 2022
Merged
Show file tree
Hide file tree
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- 11
scala:
- 2.11.12
- 2.12.15
- 2.12.16
- 2.13.8
test-coverage:
runs-on: ubuntu-latest
Expand All @@ -40,7 +40,7 @@ jobs:
- name: java ${{matrix.java}} setup
uses: olafurpg/setup-scala@v13
- run: |
sbt ++2.12.15 coverage test coverageReport
sbt ++2.12.16 coverage test coverageReport
bash <(curl -s https://codecov.io/bash)
mimaReport:
runs-on: ubuntu-latest
Expand All @@ -60,7 +60,7 @@ jobs:
- 11
scala:
- 2.11.12
- 2.12.15
- 2.12.16
- 2.13.8
microsite:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ crossScalaVersions := Nil

val sharedSettings = Seq(
organization := "com.twitter",
scalaVersion := "2.12.15",
scalaVersion := "2.12.16",
crossScalaVersions := Seq("2.11.12", scalaVersion.value),
resolvers ++= Seq(
Opts.resolver.sonatypeSnapshots,
Expand Down
4 changes: 3 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.2")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")

dependencyOverrides += "org.scala-lang.modules" %% "scala-xml" % "2.1.0"