Skip to content

Commit

Permalink
Merge pull request #252 from bjaglin/0931
Browse files Browse the repository at this point in the history
bump scalafix & scala
  • Loading branch information
bjaglin authored Sep 16, 2021
2 parents 9bf7ae1 + a03f217 commit d2ab3a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ libraryDependencies ++= List(
"org.scalatest" %% "scalatest" % "3.2.9" % Test
)

scalaVersion := "2.12.14"
scalaVersion := "2.12.15"

// keep this as low as possible to avoid running into binary incompatibility such as https://github.com/sbt/sbt/issues/5049
pluginCrossBuild / sbtVersion := "1.2.1"
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt._

object Dependencies {
val x = List(1) // scalafix:ok
def scalafixVersion: String = "0.9.30"
def scalafixVersion: String = "0.9.31"

val all = List(
"org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.0.202109080827-r",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ class SbtCompletionsSuite extends AnyFunSuite {
|DisableSyntax
| Reports an error for disabled features such as var or XML literals.
|ExplicitResultTypes
| Inserts type annotations for inferred public members. Only compatible with Scala 2.11.12, 2.12.12, 2.12.13, 2.12.14, 2.13.4, 2.13.5, 2.13.6.
| Inserts type annotations for inferred public members. Only compatible with Scala 2.11.12, 2.12.13, 2.12.14, 2.12.15, 2.13.4, 2.13.5, 2.13.6.
|LeakingImplicitClassVal
| Adds 'private' to val parameters of implicit value classes
|NoAutoTupling
| Inserts explicit tuples for adapted argument lists for compatibility with -Yno-adapted-args
|NoValInForComprehension
| Removes deprecated val inside for-comprehension binders
|ProcedureSyntax
| Replaces deprecated procedure syntax with explicit ': Unit ='This rule is specific to scala 2, since procedure syntax is not supported in Scala 3
| Replaces deprecated procedure syntax with explicit ': Unit ='
|RemoveUnused
| Removes unused imports and terms that reported by the compiler under -Ywarn-unused
|SemanticRule
Expand Down

0 comments on commit d2ab3a2

Please sign in to comment.