-
Notifications
You must be signed in to change notification settings - Fork 87
Upgrade to scalafix v0.9.0 #159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Does that mean that the changes proposed in #155 are not necessary? |
I had forgotten about that one, I will incorporate those changes into this PR next week 👍 |
Incorporated the changes from #155 and addressed the remaining comment. This should be ready to go 💪 |
README.md
Outdated
@@ -11,7 +11,7 @@ To use this library, add the following to your build.sbt: | |||
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "0.2.1" | |||
``` | |||
|
|||
Version 0.2.1 is compatible with Scala 2.13.0-M5. For Scala 2.13.0-M4 you should use version 0.1.1. | |||
Version 0.2.1 is compatible with Scala |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you remove that part?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I blindly cherry-picked all commits from #155, added it back now.
// build.sbt | ||
scalafixDependencies += "org.scala-lang.modules" %% "scala-collection-migrations" % "0.2.1" | ||
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "0.2.1" | ||
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be wrapped in triple quotes or tildes.
README.md
Outdated
|
||
```scala | ||
// project/plugins.sbt | ||
|
||
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.7.0-RC1") | ||
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.0-RC1") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why still use RC1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! Updated to 0.9.0
That looks good, thank you so much! |
Update sbt to 1.5.6
Followup of #156