Skip to content

Commit

Permalink
Prepared release 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Oct 8, 2022
1 parent 00747eb commit 6e8de2d
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.5" cross (CrossVersion.full) % "provided"
libraryDependencies += "com.lihaoyi" %% "acyclic" % "0.3.6" cross (CrossVersion.full) % "provided"

autoCompilerPlugins := true

addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.3.5")
addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.3.6")
```

## Mill

For Mill, use the following:

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

**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/main/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.6**: Added support for Scala 2.13.10

**0.3.5**: Added support for Scala 2.13.9

**0.3.4**: Added support for Scala 2.12.17
Expand Down

0 comments on commit 6e8de2d

Please sign in to comment.