File tree Expand file tree Collapse file tree 7 files changed +13
-9
lines changed Expand file tree Collapse file tree 7 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ jobs:
2222 strategy :
2323 matrix :
2424 os : [ubuntu-latest]
25- scala : [3.0.1 , 2.12.15, 2.13.6]
25+ scala : [3.0.2 , 2.12.15, 2.13.6]
2626 java : [adopt@1.8, adopt@1.11]
2727 platform : [jvm]
2828 workers : [1, 4]
2929 include :
3030 - workers : 1
3131 os : ubuntu-latest
3232 java : adopt@1.8
33- scala : 3.0.1
33+ scala : 3.0.2
3434 platform : js
3535 - workers : 1
3636 os : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ sourceDirectory := file("dummy source directory")
22
33val Scala212 = " 2.12.15"
44val Scala213 = " 2.13.6"
5- val Scala3 = " 3.0.1 "
5+ val Scala3 = " 3.0.2 "
66
77ThisBuild / crossScalaVersions := Seq (Scala3 , Scala212 , Scala213 )
88ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last
@@ -173,7 +173,11 @@ lazy val sharedSettings = MimaSettings.settings ++ Seq(
173173 Test / scalacOptions ~= (_ filterNot (_ == " -Xfatal-warnings" )),
174174
175175 autoAPIMappings := true ,
176- mimaReportSignatureProblems := true ,
176+ // Mima signature checking stopped working after 3.0.2 upgrade, see #834
177+ mimaReportSignatureProblems := (CrossVersion .partialVersion(scalaVersion.value) match {
178+ case Some ((3 , _)) => false
179+ case _ => true
180+ }),
177181 mimaPreviousArtifacts := Set (" org.scalacheck" %%% " scalacheck" % " 1.15.4" ),
178182
179183 publishTo := {
Original file line number Diff line number Diff line change 11name := " commands-leveldb"
22
3- scalaVersion := " 3.0.1 "
3+ scalaVersion := " 3.0.2 "
44
55libraryDependencies ++= Seq (
66 " org.scalacheck" %% " scalacheck" % " 1.15.4" % Test ,
Original file line number Diff line number Diff line change 11name := " commands-nix"
22
3- scalaVersion := " 3.0.1 "
3+ scalaVersion := " 3.0.2 "
44
55libraryDependencies ++= Seq (
66 " org.scalacheck" %% " scalacheck" % " 1.15.4" % Test ,
Original file line number Diff line number Diff line change 11name := " commands-redis"
22
3- scalaVersion := " 3.0.1 "
3+ scalaVersion := " 3.0.2 "
44
55libraryDependencies ++= Seq (
66 " org.scalacheck" %% " scalacheck" % " 1.15.4" % Test ,
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ name := "ScalaCheck-scalajs-example"
44
55version := " 0.1-SNAPSHOT"
66
7- scalaVersion := " 3.0.1 "
7+ scalaVersion := " 3.0.2 "
88
99libraryDependencies += " org.scalacheck" %%% " scalacheck" % " 1.15.4" % Test
Original file line number Diff line number Diff line change 11name := " scalacheck-demo"
22
3- scalaVersion := " 3.0.1 "
3+ scalaVersion := " 3.0.2 "
44
55libraryDependencies += " org.scalacheck" %% " scalacheck" % " 1.15.4" % Test
66
You can’t perform that action at this time.
0 commit comments