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

Commit

Permalink
0.3.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Jan 12, 2017
1 parent 9620098 commit 701ea95
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 their build, add the following to `~/.sbt/0.13/plugins/build.sbt`:

````scala
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.3.5")
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.3.6")
````

Upon first use, the plugin will download the advice dataset from `https://scala-clippy.org` and store it in the
Expand Down Expand Up @@ -105,13 +105,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.3.5" classifier "bundle")
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.3.6" classifier "bundle")
````

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

````scala
-Xplugin:clippy-plugin_2.11-0.3.5-bundle.jar
-Xplugin:clippy-plugin_2.11-0.3.6-bundle.jar
````

# Contributing to the project
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.3.5",
version := "0.3.6",

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.3.5")
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.3.6")
</pre>

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

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

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

<pre>
-Xplugin:clippy-plugin_2.11-0.3.5-bundle.jar
-Xplugin:clippy-plugin_2.11-0.3.6-bundle.jar
</pre>

0 comments on commit 701ea95

Please sign in to comment.