Skip to content

Commit

Permalink
Prepared release 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Sep 14, 2022
1 parent 925b2a3 commit 4b85e59
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,20 +177,20 @@ How to Use
To use, add the following to your `build.sbt`:

```scala
libraryDependencies += "com.lihaoyi" %% "acyclic" % "0.3.3" cross (CrossVersion.full) % "provided"
libraryDependencies += "com.lihaoyi" %% "acyclic" % "0.3.4" cross (CrossVersion.full) % "provided"

autoCompilerPlugins := true

addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.3.3")
addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.3.4")
```

## Mill

For Mill, use the following:

```scala
def compileIvyDeps = Agg(ivy"com.lihaoyi:::acyclic:0.3.3")
def scalacPluginIvyDeps = Agg(ivy"com.lihaoyi:::acyclic:0.3.3")
def compileIvyDeps = Agg(ivy"com.lihaoyi:::acyclic:0.3.4")
def scalacPluginIvyDeps = Agg(ivy"com.lihaoyi:::acyclic:0.3.4")
```

**Acyclic** is currently being used in [uTest](https://github.com/lihaoyi/utest), [Scalatags](https://github.com/lihaoyi/scalatags) and [Scala.Rx](https://github.com/lihaoyi/scala.rx), and helped remove many cycle between files which had no good reason for being cyclic. It is also being used to verify the acyclicity of [its own code](https://github.com/lihaoyi/acyclic/blob/master/acyclic/src/acyclic/plugin/PluginPhase.scala). It works with Scala 2.11, 2.12 and 2.13.
Expand Down Expand Up @@ -244,6 +244,8 @@ Acyclic has problems in a number of cases:
ChangeLog
=========

**0.3.4**: Added support for Scala 2.12.17

**0.3.3**: Added support for Scala 2.12.16

**0.3.2**: Added plugin option `warn` to emit compiler warnings instead of errors
Expand Down

0 comments on commit 4b85e59

Please sign in to comment.