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

Commit 93e69f2

Browse files
committed
0.3.2 release
1 parent 28caa53 commit 93e69f2

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 their build, add the following to `~/.sbt/0.13/plugins/build.sbt`:
3232

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

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

9494
````scala
95-
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.3.1" classifier "bundle")
95+
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.3.2" classifier "bundle")
9696
````
9797

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

100100
````scala
101-
-Xplugin:clippy-plugin_2.11-0.3.1-bundle.jar
101+
-Xplugin:clippy-plugin_2.11-0.3.2-bundle.jar
102102
````
103103

104104
# Contributing to the project

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name := "clippy"
2020
// factor out common settings into a sequence
2121
lazy val commonSettingsNoScalaVersion = scalariformSettings ++ Seq(
2222
organization := "com.softwaremill.clippy",
23-
version := "0.3.1",
23+
version := "0.3.2",
2424

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

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.3.1")
44+
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.3.2")
4545
</pre>
4646

4747
<p>
@@ -81,13 +81,13 @@ <h2>Alternative ways to use Clippy</h2>
8181
</p>
8282

8383
<pre>
84-
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.3.1" classifier "bundle")
84+
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.3.2" classifier "bundle")
8585
</pre>
8686

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

9191
<pre>
92-
-Xplugin:clippy-plugin_2.11-0.3.1-bundle.jar
92+
-Xplugin:clippy-plugin_2.11-0.3.2-bundle.jar
9393
</pre>

0 commit comments

Comments
 (0)