From 95fe045437776d8c51390643f78a77087a8fdcc9 Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Wed, 17 Jun 2020 17:04:29 +0200 Subject: [PATCH] Update README.md --- README.md | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 23ccf725..f638e63c 100644 --- a/README.md +++ b/README.md @@ -404,31 +404,20 @@ object IOCommandExample extends CommandApp[DemoCommand] { } ``` -### Migration from the previous version - -Shared options used to be automatic, and now require the `@Recurse` -annotation on the field corresponding to the shared options. This prevents -ambiguities with custom types as above. - ## Usage Add to your `build.sbt` ```scala resolvers += Resolver.sonatypeRepo("releases") -libraryDependencies += "com.github.alexarchambault" %% "case-app" % "2.0.0-M3" +libraryDependencies += "com.github.alexarchambault" %% "case-app" % "2.0.1" // cats-effect module -libraryDependencies += "com.github.alexarchambault" %% "case-app-cats" % "2.0.0-M3" +libraryDependencies += "com.github.alexarchambault" %% "case-app-cats" % "2.0.1" ``` +The latest version is [![Maven Central](https://img.shields.io/maven-central/v/com.github.alexarchambault/case-app_2.13.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.alexarchambault/case-app_2.13). Note that case-app depends on shapeless 2.3. Use the `1.0.0` version if you depend on shapeless 2.2. -It is built against scala 2.10, 2.11, and 2.12, and 2.13.0-M1, and supports both scala-js and scala-native. - -If you are using scala 2.10.x, also add the macro paradise plugin to your build, -```scala -libraryDependencies += - compilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.full) -``` +It is built against scala 2.12, and 2.13, and supports Scala.js too. ## Contributors