-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update scala3-library, ... to 3.1.3 (#1096)
- Loading branch information
1 parent
41c94bc
commit 852ec7b
Showing
3 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ val gitDevUrl = s"[email protected]:$gitHubOwner/$projectName.git" | |
|
||
val Scala_2_12 = "2.12.17" | ||
val Scala_2_13 = "2.13.10" | ||
val Scala_3 = "3.1.2" | ||
val Scala_3 = "3.1.3" | ||
|
||
val catsVersion = "2.8.0" | ||
val jsonpathVersion = "2.7.0" | ||
|
@@ -415,13 +415,13 @@ lazy val compileSettings = Def.settings( | |
"UTF-8", | ||
"-feature", | ||
"-language:existentials,experimental.macros,higherKinds,implicitConversions", | ||
"-unchecked", | ||
"-Xfatal-warnings" | ||
"-unchecked" | ||
), | ||
scalacOptions ++= { | ||
CrossVersion.partialVersion(scalaVersion.value) match { | ||
case Some((2, minor)) if minor >= 12 => | ||
Seq( | ||
"-Xfatal-warnings", | ||
"-Xlint:-unused,_", | ||
"-Ywarn-numeric-widen", | ||
"-Ywarn-value-discard", | ||
|