Skip to content

Commit

Permalink
Merge pull request scalacenter#33 from olafurpg/master
Browse files Browse the repository at this point in the history
Upgrade Scalafix
  • Loading branch information
olafurpg authored Nov 29, 2018
2 parents 76059a4 + 0fef1e8 commit a8f8636
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object Dependencies {
val x = List(1) // scalafix:ok
def scalafixVersion: String = sys.env.get("TRAVIS_TAG") match {
case Some(v) if v.nonEmpty => v.stripPrefix("v")
case _ => "0.9.0"
case _ => "0.9.1"
}
val all = List(
"org.eclipse.jgit" % "org.eclipse.jgit" % "4.5.4.201711221230-r",
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/scalafix/sbt/BuildInfo.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import java.util.Properties
object BuildInfo {

def scalafixVersion: String =
props.getProperty("scalafixVersion", "0.9.0")
props.getProperty("scalafixVersion", "0.9.1")
def scalafixStableVersion: String =
props.getProperty("scalafixStableVersion", "0.9.0")
props.getProperty("scalafixStableVersion", "0.9.1")
def scalametaVersion: String =
props.getProperty("scalametaVersion", "4.1.0")
def scala212: String =
Expand Down

0 comments on commit a8f8636

Please sign in to comment.