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

Commit fd127d7

Browse files
committed
0.5.1 release
1 parent 99ee665 commit fd127d7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The easiest to use Clippy is via an SBT plugin. If you'd like Clippy to be enabl
3131
the need to modify each project's build, add the following to `~/.sbt/0.13/plugins/build.sbt`:
3232

3333
````scala
34-
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.5.0")
34+
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.5.1")
3535
````
3636

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

132132
````scala
133-
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.5.0" classifier "bundle")
133+
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.5.1" classifier "bundle")
134134
````
135135

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

138138
````scala
139-
-Xplugin:clippy-plugin_2.11-0.5.0-bundle.jar
139+
-Xplugin:clippy-plugin_2.11-0.5.1-bundle.jar
140140
````
141141

142142
This can be followed by any of the available options, e.g. `-P:clippy:colors=true`.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ name := "clippy"
2222
// factor out common settings into a sequence
2323
lazy val commonSettingsNoScalaVersion = scalariformSettings ++ Seq(
2424
organization := "com.softwaremill.clippy",
25-
version := "0.5.0",
25+
version := "0.5.1",
2626

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

ui/app/views/use.scala.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ <h2>Adding the plugin</h2>
4141
</p>
4242

4343
<pre>
44-
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.5.0")
44+
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.5.1")
4545
</pre>
4646

4747
<p>
@@ -132,15 +132,15 @@ <h2>Alternative ways to use Clippy</h2>
132132
</p>
133133

134134
<pre>
135-
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.5.0" classifier "bundle")
135+
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.5.1" classifier "bundle")
136136
</pre>
137137

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

142142
<pre>
143-
-Xplugin:clippy-plugin_2.11-0.5.0-bundle.jar
143+
-Xplugin:clippy-plugin_2.11-0.5.1-bundle.jar
144144
</pre>
145145

146146
<p>

0 commit comments

Comments
 (0)