-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update "README.md" for Scala 2.13.0 compiler specification changing(a… #2949
Conversation
…bout partial unification). typelevel#2948
Codecov Report
@@ Coverage Diff @@
## master #2949 +/- ##
=======================================
Coverage 94.03% 94.03%
=======================================
Files 370 370
Lines 7038 7038
Branches 183 183
=======================================
Hits 6618 6618
Misses 420 420 Continue to review full report at Codecov.
|
README.md
Outdated
@@ -67,12 +67,14 @@ Silver Sponsors are those who have pledged $2,000 to $5,000. | |||
|
|||
Cats is currently available for Scala 2.10 (up to 1.2.x), 2.11, 2.12, 2.13.0, and [Scala.js](http://www.scala-js.org/). | |||
|
|||
Cats relies on improved type inference via the fix for [SI-2712](https://github.com/scala/bug/issues/2712), which is not enabled by default. For **Scala 2.11.9 or later** you should add the following to your `build.sbt`: | |||
Cats relies on improved type inference via the fix for [SI-2712](https://github.com/scala/bug/issues/2712), which is not enabled by default. For **Scala 2.11.9 to 2.12.8** you should add the following to your `build.sbt`: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scala 2.12 might release another minor version. I'd say For Scala 2.11.9+ or Scala 2.12
README.md
Outdated
|
||
```scala | ||
scalacOptions += "-Ypartial-unification" | ||
``` | ||
|
||
(From Scala 2.13.0, it became partial unification on by default. The compiler no longer accepts `-Ypartial-unification`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about
Partial unification is on by default since Scala 2.13, the compiler no longer accepts `-Ypartial-unification`.
Thank you for your review! |
Thanks! |
Update "README.md" for Scala 2.13.0 compiler specification changing(about partial unification). #2948