Skip to content

Update changelog since v5.0.0 #47

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

Merged
merged 1 commit into from
Jan 24, 2021
Merged
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
25 changes: 15 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,23 @@ 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 (#38, #44)

New features:

Bugfixes:

Other improvements:
- Fixed `Foldable1 (NonEmpty f)` instance, as `Foldable1` now has `foldr1` and `foldl1` as members (#39)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Technically this was bundled into #38, but the standalone PR was #39 so in this case I opted to keep that reference.

- Deprecated monomorphic `foldl1`, suggesting the polymorphic `foldl1` from `Data.Semigroup.Foldable` instead (#42)
- Added examples (#36)
- Migrated CI to GitHub Actions and updated installation instructions to use Spago (#43)
- Added a changelog and pull request template (#46)

## [v5.0.0](https://github.com/purescript/purescript-nonempty/releases/tag/v5.0.0) - 2018-05-23

- Updated for PureScript 0.12
- Monomorphic versions of `Foldable1` functions have been removed
- Removed monomorphic versions of `Foldable1` functions

## [v4.3.0](https://github.com/purescript/purescript-nonempty/releases/tag/v4.3.0) - 2018-05-13

Expand All @@ -31,7 +37,7 @@ Other improvements:

## [v4.1.0](https://github.com/purescript/purescript-nonempty/releases/tag/v4.1.0) - 2017-11-21

`FunctorWithIndex`, `FoldableWithIndex`, `TraversableWithIndex` instances (@matthewleon, @safareli)
- Added `FunctorWithIndex`, `FoldableWithIndex`, `TraversableWithIndex` instances (@matthewleon, @safareli)

## [v4.0.0](https://github.com/purescript/purescript-nonempty/releases/tag/v4.0.0) - 2017-03-26

Expand All @@ -51,29 +57,28 @@ Other improvements:

## [v1.0.0](https://github.com/purescript/purescript-nonempty/releases/tag/v1.0.0) - 2016-06-02

Updates for 1.0 core libraries
- Updated for 1.0 core libraries

## [v0.2.0](https://github.com/purescript/purescript-nonempty/releases/tag/v0.2.0) - 2016-01-31

Updates for 0.8.0 (@sharkdp)
- Updated for 0.8.0 (@sharkdp)

## [v0.1.4](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.4) - 2016-01-31

Add `head` and `tail` (@sharkdp)
- Added `head` and `tail` (@sharkdp)

## [v0.1.3](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.3) - 2016-01-14

Remove unused type var (@jonsterling)
- Removed unused type var (@jonsterling)

## [v0.1.2](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.2) - 2015-07-23

Add `singleton` (@garyb)
- Added `singleton` (@garyb)

## [v0.1.1](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.1) - 2015-07-13


- Added `fromNonEmpty` operation (#1)

## [v0.1.0](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.0) - 2015-07-07

Initial versioned release

- Initial versioned release