Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
0.5.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Mar 7, 2017
1 parent 8f13575 commit 439c095
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -31,7 +31,7 @@ The easiest to use Clippy is via an SBT plugin. If you'd like Clippy to be enabl
the need to modify each project's build, add the following to `~/.sbt/0.13/plugins/build.sbt`:

````scala
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.5.1")
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.5.2")
````

Upon first use, the plugin will download the advice dataset from `https://scala-clippy.org` and store it in the
Expand Down Expand Up @@ -130,13 +130,13 @@ You can also use Clippy directly as a compiler plugin. If you use SBT, add the f
project's `.sbt` file:

````scala
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.5.1" classifier "bundle")
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.5.2" classifier "bundle")
````

If you are using `scalac` directly, add the following option:

````scala
-Xplugin:clippy-plugin_2.11-0.5.1-bundle.jar
-Xplugin:clippy-plugin_2.11-0.5.2-bundle.jar
````

This can be followed by any of the available options, e.g. `-P:clippy:colors=true`.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -22,7 +22,7 @@ name := "clippy"
// factor out common settings into a sequence
lazy val commonSettingsNoScalaVersion = scalariformSettings ++ Seq(
organization := "com.softwaremill.clippy",
version := "0.5.1",
version := "0.5.2",

scalacOptions ++= Seq("-unchecked", "-deprecation"),

Expand Down
6 changes: 3 additions & 3 deletions ui/app/views/use.scala.html
Expand Up @@ -41,7 +41,7 @@ <h2>Adding the plugin</h2>
</p>

<pre>
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.5.1")
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.5.2")
</pre>

<p>
Expand Down Expand Up @@ -132,15 +132,15 @@ <h2>Alternative ways to use Clippy</h2>
</p>

<pre>
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.5.1" classifier "bundle")
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.5.2" classifier "bundle")
</pre>

<p>
If you are using <code>scalac</code> directly, add the following option:
</p>

<pre>
-Xplugin:clippy-plugin_2.11-0.5.1-bundle.jar
-Xplugin:clippy-plugin_2.11-0.5.2-bundle.jar
</pre>

<p>
Expand Down

0 comments on commit 439c095

Please sign in to comment.