-
Notifications
You must be signed in to change notification settings - Fork 43
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 changelog since v4.2.0 #137
Conversation
@@ -5,17 +5,26 @@ Notable changes to this project are documented in this file. The format is based | |||
## [Unreleased] | |||
|
|||
Breaking changes: | |||
- Added support for PureScript 0.14 and dropped support for all previous versions (#133) | |||
- Replaced `ComonadEnv` constraint with `ComonadAsk` in the `asks` function (#131) |
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.
This is barely a breaking change, but as discussed in #131 it can be breaking.
@@ -139,18 +141,6 @@ This release requires the 0.7.4.0 release of the PureScript compiler. Previous v | |||
- More instances for `ExceptT` | |||
- `ErrorT` has been removed in favor of `ExceptT`. | |||
|
|||
## [v0.7.0-rc.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.0-rc.2) - 2015-08-25 |
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.
I've removed the release candidates and merged their contents into the proper releases as we don't usually include them in changelogs.
CHANGELOG.md
Outdated
|
||
Bugfixes: | ||
- Added superclasses to `MonadWriter` and `MonadTell` to enforce the type class laws (#126) |
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.
I think this could be a bit clearer as to which super classes were added. Something like this?
Added
Semigroup
andMonoid
superclasses toMonadTell
andMonadWriter
, respectively, to enforce the type class laws.
CHANGELOG.md
Outdated
|
||
## [v0.2.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.2.1) - 2014-09-04 | ||
|
||
Simplify superinstance constraints for ErrorT | ||
S- implify superinstance constraints for ErrorT |
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.
Whoops!
|
||
New features: | ||
- Added `IdentityT` (#121) | ||
|
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.
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.
Huh, not sure how I missed it. Thanks!
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.
Just a few things to fix
Description of the change
This PR updates the CHANGELOG in preparation for the upcoming release of this library.
Related: purescript/purescript#3985