Releases: purescript/purescript-lists
Releases · purescript/purescript-lists
v3.2.1
- Fixed shadowed name warnings
v3.2.0
- Adds an implementation of
traverse
which does not grow the stack.
v3.1.0
- Added
manyRec
and someRec
- stack safe versions of many
and some
via MonadRec
.
v3.0.1
- Fix
purescript-generics
dependency to use ^
rather than v
.
v3.0.0
- The
group
functions now return NonEmptyList
typed values rather than NonEmpty List
- The lazy non-empty list is now lazier
- The modules have been rearranged internally
v2.1.0
- Added
Data.List.NonEmpty
(a newtype
of NonEmpty List a
with additional instances)
- Added
Extend
instance for List
v2.0.0
- Updated dependencies
- The
group
functions now return NonEmpty
groups
show
now uses :
in printing
v1.0.1
- Added
Fail
instance for Bind ZipList
(@joneshf)
v1.0.0
This release is intended for the PureScript 0.9.1 compiler and newer.
Note: The v1.0.0 tag is not meant to indicate the library is “finished”, the core libraries are all being bumped to this for the 0.9 compiler release so as to use semver more correctly.
v1.0.0-rc.3
- Added
Generic
instance for List