-
Notifications
You must be signed in to change notification settings - Fork 55
Changelog updates since v4.1.1 #130
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
Conversation
@@ -5,12 +5,22 @@ Notable changes to this project are documented in this file. The format is based | |||
## [Unreleased] | |||
|
|||
Breaking changes: | |||
- Updated code for PureScript 0.14 (#120) | |||
- Removed `fold1Default` and deprecated `foldMap1Default` (#128) |
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 believe this was the net result of breaking changes. Would be good to double-check.
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 is correct
CHANGELOG.md
Outdated
|
||
New features: | ||
- Added `findMapWithIndex` (#119) | ||
- Added `foldr1` `foldl1` `foldr1Default` `foldl1Default` `foldMap1DefaultR` `foldMap1DefaultL` (#121, #128) |
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.
Ignoring the introduction, then removal of fold1DefaultR
fold1DefaultL
CHANGELOG.md
Outdated
|
||
New features: | ||
- Added `findMapWithIndex` (#119) | ||
- Added `foldr1` `foldl1` `foldr1Default` `foldl1Default` `foldMap1DefaultR` `foldMap1DefaultL` (#121, #128) |
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.
Should these be comma-separated, ie.
- Added `foldr1`, `foldl1`, ..., and `foldMap1DefaultL`
CHANGELOG.md
Outdated
@@ -5,12 +5,22 @@ Notable changes to this project are documented in this file. The format is based | |||
## [Unreleased] | |||
|
|||
Breaking changes: | |||
- Updated code for PureScript 0.14 (#120) |
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 it's clearer to phrase this as "Added support for PureScript 0.14, and dropped support for all previous versions"
Description of the change
This PR updates the CHANGELOG in preparation for the upcoming release of this library.
Related: purescript/purescript#3985