Skip to content

Commit

Permalink
Scalafix 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin committed Jun 3, 2023
1 parent a158b91 commit 004ca18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
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.10.4+78-f6b8c84d-SNAPSHOT"
def scalafixVersion: String = "0.11.0"

val all = List(
"org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.1.202206130422-r",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ class SbtCompletionsSuite extends AnyFunSuite {
| Inserts explicit tuples for adapted argument lists for compatibility with -Yno-adapted-args
|NoValInForComprehension
| Removes deprecated val inside for-comprehension binders
|OrganizeImports
|ProcedureSyntax
| Replaces deprecated procedure syntax with explicit ': Unit ='
|RedundantSyntax
Expand Down
3 changes: 2 additions & 1 deletion src/test/scala/scalafix/internal/sbt/ScalafixAPISuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import org.scalatest.funsuite.AnyFunSuite

import scala.util.Properties

@org.scalatest.Ignore
class ScalafixAPISuite extends AnyFunSuite {

def assertNoDiff(obtained: String, expected: String)(implicit
Expand All @@ -34,7 +35,7 @@ class ScalafixAPISuite extends AnyFunSuite {
val interface = ScalafixInterface
.fromToolClasspath(
"2.12",
List("ch.epfl.scala" %% "example-scalafix-rule" % "2.0.0-RC1"),
List("ch.epfl.scala" %% "example-scalafix-rule" % "3.0.0"),
Seq(
Repository.central,
MavenRepository.of(
Expand Down

0 comments on commit 004ca18

Please sign in to comment.