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

Commit c1f34e1

Browse files
committed
0.3.1 release
1 parent c63f749 commit c1f34e1

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 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.0")
34+
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.3.1")
3535
````
3636

3737
Upon first use, the plugin will download the advice dataset from `https://scala-clippy.org` and store it in the
@@ -54,7 +54,7 @@ Just create a file named .clippy.json in the root of your project directory and
5454

5555
````
5656
{
57-
"version": "0.3.0",
57+
"version": "0.3.1",
5858
"advices": [
5959
{
6060
"id": 2,
@@ -80,13 +80,13 @@ You can also use Clippy directly as a compiler plugin. If you use SBT, add the f
8080
project's `.sbt` file:
8181

8282
````scala
83-
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.3.0" classifier "bundle")
83+
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.3.1" classifier "bundle")
8484
````
8585

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

8888
````scala
89-
-Xplugin:clippy-plugin_2.11-0.3.0-bundle.jar
89+
-Xplugin:clippy-plugin_2.11-0.3.1-bundle.jar
9090
````
9191

9292
# 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.0",
23+
version := "0.3.1",
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.0")
44+
addSbtPlugin("com.softwaremill.clippy" % "plugin-sbt" % "0.3.1")
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.0" classifier "bundle")
84+
addCompilerPlugin("com.softwaremill.clippy" %% "plugin" % "0.3.1" 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.0-bundle.jar
92+
-Xplugin:clippy-plugin_2.11-0.3.1-bundle.jar
9393
</pre>

0 commit comments

Comments
 (0)