Skip to content

Commit

Permalink
Updated README for 0.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mpilquist committed Jul 24, 2018
1 parent d0a0e09 commit 4ebd79b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ Note that the second approach will not include the `map` operation of its grandp

## Including Simulacrum

This project supports Scala 2.10, 2.11 2.12, and 2.13.0-M3. The project is based on macro paradise. To use the project, add the following to your build.sbt:
This project supports Scala 2.10, 2.11 2.12, and 2.13.0-M4. The project is based on macro paradise. To use the project, add the following to your build.sbt:

```scala
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)

libraryDependencies += "com.github.mpilquist" %% "simulacrum" % "0.12.0"
libraryDependencies += "com.github.mpilquist" %% "simulacrum" % "0.13.0"
```

To use the latest SNAPSHOT version, add the following:
Expand All @@ -155,7 +155,7 @@ resolvers += "Sonatype Public" at "https://oss.sonatype.org/content/groups/publi

addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)

libraryDependencies += "com.github.mpilquist" %% "simulacrum" % "0.13.0-SNAPSHOT"
libraryDependencies += "com.github.mpilquist" %% "simulacrum" % "0.14.0-SNAPSHOT"
```

Macro paradise must exist in projects which use `@typeclass`, but code that depends on the generated type classes do not need macro paradise.
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.13.1-SNAPSHOT"
version in ThisBuild := "0.14.0-SNAPSHOT"

0 comments on commit 4ebd79b

Please sign in to comment.