Skip to content

Commit

Permalink
0 9 0 post release (#1524)
Browse files Browse the repository at this point in the history
* Setting version to 0.9.0

* Setting version to 0.9.1-SNAPSHOT

* Update version numbers for 0.9.0 release on README and website
  • Loading branch information
adelbertc authored and kailuowang committed Jan 16, 2017
1 parent 68dfae1 commit 5b3a0f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To get started with SBT, simply add the following to your `build.sbt`
file:

```scala
libraryDependencies += "org.typelevel" %% "cats" % "0.8.1"
libraryDependencies += "org.typelevel" %% "cats" % "0.9.0"
```

This will pull in all of Cats' modules. If you only require some
Expand Down
19 changes: 2 additions & 17 deletions docs/src/main/tut/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ The name is a playful shortening of the word *category*.
<div class="msg warn"> <p><strong> Cats is a new project under active
development</strong>. Feedback and contributions are welcomed as we look
to improve it. This project is evolving quickly and we are making no
guarantees about stability until a 1.0 release is made (current est.
around Q3 2016).</p> </div>
guarantees about stability until a 1.0 release is made.</p></div>


### <a name="getting-started" href="#getting-started"></a>Getting Started
Expand All @@ -21,7 +20,7 @@ Cats is currently available for Scala 2.10, 2.11 and 2.12.

To get started with SBT, simply add the following to your build.sbt file:

libraryDependencies += "org.typelevel" %% "cats" % "0.8.1"
libraryDependencies += "org.typelevel" %% "cats" % "0.9.0"

This will pull in all of Cats' modules. If you only require some
functionality, you can pick-and-choose from amongst these modules
Expand Down Expand Up @@ -81,20 +80,6 @@ we can without making unnecessary sacrifices of purity and
usability. Where sacrifices have to be made, we will strive to make
these obvious, and will keep them well documented.


### <a name="project-structure" href="#project-structure"></a>Project Structure


In an attempt to be more modular, Cats is broken up into a number of sub-projects:

* *core* - contains type class definitions (e.g. Functor, Applicative, Monad), essential datatypes, and
type class instances for those datatypes and standard library types
* *laws* - laws for the type classes, used to validate type class instances
* *cats-free* - free structures such as the free monad, and supporting type classes.
* *tests* - tests that check type class instances with laws from *laws*
* *docs* - The source for this website


### <a name="copyright" href="#copyright"></a>Copyright and License


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.9.0-SNAPSHOT"
version in ThisBuild := "0.9.1-SNAPSHOT"

0 comments on commit 5b3a0f0

Please sign in to comment.