Skip to content
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 CHANGES.md, AUTHORS.md, and README.md for 0.7.2. #1350

Merged
merged 2 commits into from
Sep 2, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ possible:
* Aldo Stracquadanio
* Alejandro Gómez
* Alessandro Lacava
* Alexandru Nedelcu
* Alexander Semenov
* Alexey Levan
* Alissa Pajer
Expand All @@ -37,6 +38,7 @@ possible:
* Brian McKenna
* Cody Allen
* Colt Frederickson
* Csongor Kiss
* Dale Wijnand
* Daniel Spiewak
* Dave Gurnell
Expand All @@ -53,11 +55,13 @@ possible:
* Eugene Yokota
* Feynman Liang
* Frank S. Thomas
* Giulio De Luise
* Hamish Dickson
* Ian McIntosh
* ImLiar
* Jean-Rémi Desjardins
* Jisoo Park
* Jose Emilio Labra Gayo
* Josh Marcus
* Juan Pedro Moreno
* Julien Richard-Foy
Expand Down
29 changes: 29 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
## Version 0.7.2

> 2016 September 1

Version 0.7.2 is a patch release that was released to fix a major bug
([#1346](https://github.com/typelevel/cats/issues/1346)) that appeared
in 0.7.0. It also contains several other improvements.

It should be safe to upgrade from 0.7.0 to 0.7.2 -- there are no major
API changes between these releases.

### Changes

Fixes:

* [#1347](https://github.com/typelevel/cats/pull/1347): fixes broken `Monoid[Map[K, V]].combineAll` implementation.
* [#1304](https://github.com/typelevel/cats/pull/1304): fix `CoflatMap` documentation.
* [#1322](https://github.com/typelevel/cats/pull/1322): fix SBT commands (`release`, `validate`, etc.).
* [#1311](https://github.com/typelevel/cats/pull/1311): rename some implicit instances for consistency.

Additions:

* [#1319](https://github.com/typelevel/cats/pull/1347): add missing `BigDecimal` instances.
* [#1324](https://github.com/typelevel/cats/pull/1324): add missing function and `BitSet` instances.

Note that 0.7.2 was preceeded by a botched 0.7.1. release. Please
avoid using this version of Cats -- it has major incompatibilities
with 0.7.0 and is not documented here.

## Version 0.7.0

> 2016 August 21
Expand Down
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.7.0"
libraryDependencies += "org.typelevel" %% "cats" % "0.7.2"
```

This will pull in all of Cats' modules. If you only require some
Expand Down