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

Commit 27c519a

Browse files
committed
0.4.1 release
1 parent b98f1e7 commit 27c519a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

+3-3
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.4.0")
34+
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.4.1")
3535
````
3636

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

106106
````scala
107-
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.4.0" classifier "bundle")
107+
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.4.1" classifier "bundle")
108108
````
109109

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

112112
````scala
113-
-Xplugin:clippy-plugin_2.11-0.4.0-bundle.jar
113+
-Xplugin:clippy-plugin_2.11-0.4.1-bundle.jar
114114
````
115115

116116
If you would like local advice to work in intellij which defaults to running in a different directory than the project:

build.sbt

+1-1
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.4.0",
25+
version := "0.4.1",
2626

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

ui/app/views/use.scala.html

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

4747
<p>
@@ -97,13 +97,13 @@ <h2>Alternative ways to use Clippy</h2>
9797
</p>
9898

9999
<pre>
100-
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.4.0" classifier "bundle")
100+
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.4.1" classifier "bundle")
101101
</pre>
102102

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

107107
<pre>
108-
-Xplugin:clippy-plugin_2.11-0.4.0-bundle.jar
108+
-Xplugin:clippy-plugin_2.11-0.4.1-bundle.jar
109109
</pre>

0 commit comments

Comments
 (0)