From 79dd3e90c73587d45aa8f9d14e76bc7630c22ec4 Mon Sep 17 00:00:00 2001 From: Erik Osheim Date: Fri, 20 May 2016 00:54:42 -0400 Subject: [PATCH] Bump versions from 0.5.0 to 0.6.0. --- README.md | 5 +++-- docs/src/site/index.md | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bffa329078..f3e3cff3e9 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ To get started with SBT, simply add the following to your `build.sbt` file: ```scala -libraryDependencies += "org.typelevel" %% "cats" % "0.5.0" +libraryDependencies += "org.typelevel" %% "cats" % "0.6.0" ``` This will pull in all of Cats' modules. If you only require some @@ -30,7 +30,8 @@ functionality, you can pick-and-choose from amongst these modules (used in place of `"cats"`): * `cats-macros`: Macros used by Cats syntax (*required*). - * `cats-core`: Core type classes and functionality (*required*). + * `cats-kernel`: Small set of basic type classes (*required*). + * `cats-core`: Most core type classes and functionality (*required*). * `cats-laws`: Laws for testing type class instances. * `cats-free`: Free structures such as the free monad, and supporting type classes. diff --git a/docs/src/site/index.md b/docs/src/site/index.md index 7f04546cfc..cb08a2b44f 100644 --- a/docs/src/site/index.md +++ b/docs/src/site/index.md @@ -21,14 +21,15 @@ Cats is currently available for Scala 2.10 and 2.11. To get started with SBT, simply add the following to your build.sbt file: - libraryDependencies += "org.typelevel" %% "cats" % "0.5.0" + libraryDependencies += "org.typelevel" %% "cats" % "0.6.0" This will pull in all of Cats' modules. If you only require some functionality, you can pick-and-choose from amongst these modules (used in place of `"cats"`): * `cats-macros`: Macros used by Cats syntax (*required*). - * `cats-core`: Core type classes and functionality (*required*). + * `cats-kernel`: Small set of basic type classes (*required*). + * `cats-core`: Most core type classes and functionality (*required*). * `cats-laws`: Laws for testing type class instances. * `cats-free`: Free structures such as the free monad, and supporting type classes.