From 34c5d1b40e546104fda9f6e406cd930783411c3b Mon Sep 17 00:00:00 2001 From: awebb-oct Date: Fri, 28 Apr 2017 11:21:25 -0600 Subject: [PATCH] Update README.md When I tried to use this project the latest versions I could find were `1.0.0` for `metarest` (which is what the badge has) and `3.0.0-M7` for paradise. Am I missing something? I'm pretty new to scala and Java dependency management in general. I'm using Scala `2.11.8` (company mandated). --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 601c0eb..12057ab 100644 --- a/README.md +++ b/README.md @@ -59,9 +59,9 @@ In your `build.sbt`, add the following entries: ```scala resolvers += Resolver.bintrayRepo("pathikrit", "maven") -libraryDependencies += "com.github.pathikrit" %% "metarest" % "2.0.0" +libraryDependencies += "com.github.pathikrit" %% "metarest" % "1.0.0" -addCompilerPlugin("org.scalameta" % "paradise" % "3.0.0-M8" cross CrossVersion.full) +addCompilerPlugin("org.scalameta" % "paradise" % "3.0.0-M7" cross CrossVersion.full) ``` Although this library currently only supports Scala 2.11+, [older versions](https://github.com/pathikrit/metarest/tree/a883c674c67a31f9eddf70797328e864f185a714) of this library that used to support Scala 2.10.x are available [here](http://dl.bintray.com/pathikrit/maven/com/github/pathikrit).