Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scalacenter/sbt-scalafix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.9.30
Choose a base ref
...
head repository: scalacenter/sbt-scalafix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.31
Choose a head ref
  • 11 commits
  • 4 files changed
  • 2 contributors

Commits on Aug 15, 2021

  1. Copy the full SHA
    c77c1d8 View commit details

Commits on Aug 16, 2021

  1. Merge pull request #245 from scala-steward/update/scalafmt-core-3.0.0…

    …-RC7
    
    Update scalafmt-core to 3.0.0-RC7
    bjaglin authored Aug 16, 2021
    Copy the full SHA
    f07de1d View commit details

Commits on Sep 1, 2021

  1. Copy the full SHA
    dacb232 View commit details
  2. Merge pull request #248 from scala-steward/update/scalafmt-core-3.0.1

    Update scalafmt-core to 3.0.1
    bjaglin authored Sep 1, 2021
    Copy the full SHA
    fb01a5a View commit details

Commits on Sep 15, 2021

  1. Copy the full SHA
    2654a66 View commit details
  2. Copy the full SHA
    251a591 View commit details
  3. Merge pull request #251 from scala-steward/update/scalafmt-core-3.0.3

    Update scalafmt-core to 3.0.3
    bjaglin authored Sep 15, 2021
    Copy the full SHA
    8f858b4 View commit details
  4. Merge pull request #249 from scala-steward/update/org.eclipse.jgit-5.…

    …13.0.202109080827-r
    
    Update org.eclipse.jgit to 5.13.0.202109080827-r
    bjaglin authored Sep 15, 2021
    Copy the full SHA
    9bf7ae1 View commit details

Commits on Sep 16, 2021

  1. bump scalafix

    bjaglin committed Sep 16, 2021
    Copy the full SHA
    a92d9ad View commit details
  2. bump scala

    bjaglin committed Sep 16, 2021
    Copy the full SHA
    a03f217 View commit details
  3. Merge pull request #252 from bjaglin/0931

    bump scalafix & scala
    bjaglin authored Sep 16, 2021
    Copy the full SHA
    d2ab3a2 View commit details
Showing with 6 additions and 6 deletions.
  1. +1 −1 .scalafmt.conf
  2. +1 −1 build.sbt
  3. +2 −2 project/Dependencies.scala
  4. +2 −2 src/test/scala/scalafix/internal/sbt/SbtCompletionsSuite.scala
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.0.0-RC6"
version = "3.0.3"
project.git=true
align.preset=none
assumeStandardLibraryStripMargin = true
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -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"
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@ 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.12.0.202106070339-r",
"org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.0.202109080827-r",
"ch.epfl.scala" % "scalafix-interfaces" % scalafixVersion,
// coursier-small provides a binary stable API around Coursier making sure that
// sbt-scalafix doesn't conflict with the user's installed version of sbt-coursier.
Original file line number Diff line number Diff line change
@@ -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