|
| 1 | +# Changelog |
| 2 | + |
| 3 | +Notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 4 | + |
| 5 | +## [Unreleased] |
| 6 | + |
| 7 | +Breaking changes: |
| 8 | + |
| 9 | +New features: |
| 10 | + |
| 11 | +Bugfixes: |
| 12 | + |
| 13 | +Other improvements: |
| 14 | + |
| 15 | +## [v4.1.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v4.1.1) - 2018-11-23 |
| 16 | + |
| 17 | +Added examples to documentation for `intercalate` (@shmish111) |
| 18 | + |
| 19 | +## [v4.1.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v4.1.0) - 2018-10-05 |
| 20 | + |
| 21 | +- Added missing exports for `minimum` and `maximum` from `Data.Semigroup.Foldable` (@paluh) |
| 22 | + |
| 23 | +## [v4.0.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v4.0.1) - 2018-09-19 |
| 24 | + |
| 25 | +- Fixed totally wrong example in the documentation for `scanr`! (@ewaldgrusk) |
| 26 | + |
| 27 | +## [v4.0.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v4.0.0) - 2018-05-23 |
| 28 | + |
| 29 | +- Updated for PureScript 0.12 |
| 30 | +- `traverse` for `Array` is now divide-and-conquer (@S11001001) |
| 31 | +- `findWithIndex` returns both index and value of the found item (@mbid) |
| 32 | +- Added `Traversable1` instances for `Dual` and `Multiplicative` (@matthewleon) |
| 33 | +- Added `minimum` and `maximum` for `Foldable1` (@colehaus) |
| 34 | +- Added functions for default `Foldable` implementations based on `FoldableWithIndex` (@matthewleon) |
| 35 | +- Added `intercalate` and `intercalateMap` for `Foldable1` (@matthewleon) |
| 36 | + |
| 37 | +## [v3.7.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.7.1) - 2018-01-10 |
| 38 | + |
| 39 | +- Fixed shadowed name warnings |
| 40 | + |
| 41 | +## [v3.7.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.7.0) - 2018-01-09 |
| 42 | + |
| 43 | +- Added `indexl` and `indexr` for `Foldable`s (@safareli) |
| 44 | + |
| 45 | +## [v3.6.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.6.1) - 2017-09-18 |
| 46 | + |
| 47 | +Fix test for `foldrDefault` (@tekerson) |
| 48 | + |
| 49 | +## [v3.6.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.6.0) - 2017-08-18 |
| 50 | + |
| 51 | +Export `oneOfMap` (@natefaubion) |
| 52 | + |
| 53 | +## [v3.5.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.5.0) - 2017-08-18 |
| 54 | + |
| 55 | +Add `oneOfMap` (@natefaubion) |
| 56 | + |
| 57 | +## [v3.4.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.4.0) - 2017-07-10 |
| 58 | + |
| 59 | +Add `FunctorWithIndex`, `FoldableWithIndex` and `TraversableWithIndex` classes (@mbid) |
| 60 | + |
| 61 | +## [v3.3.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.3.1) - 2017-06-21 |
| 62 | + |
| 63 | +Fix `foldMapDefaultL` (@mbid) |
| 64 | + |
| 65 | +## [v3.3.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.3.0) - 2017-06-04 |
| 66 | + |
| 67 | +Add `Foldable1` and `Traversable1` (@LukaJCB) |
| 68 | + |
| 69 | +## [v3.2.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.2.0) - 2017-06-03 |
| 70 | + |
| 71 | +Add a generic `foldM` which works with any `Foldable`. (@clayrat) |
| 72 | + |
| 73 | +## [v3.1.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.1.0) - 2017-06-03 |
| 74 | + |
| 75 | +Add `surroundMap` and `surround` (@LiamGoodacre) |
| 76 | + |
| 77 | +## [v3.0.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v3.0.0) - 2017-03-26 |
| 78 | + |
| 79 | +- Updated for PureScript 0.11 |
| 80 | +- Added `null` for `Foldable` (@matthewleon) |
| 81 | +- Added `length` for `Foldable` (@matthewleon) |
| 82 | +- Eta-reduced some functions (@mlang) |
| 83 | + |
| 84 | +## [v2.2.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v2.2.0) - 2017-02-06 |
| 85 | + |
| 86 | +- Added instances for the `Bifunctor` newtypes (@LiamGoodacre) |
| 87 | + |
| 88 | +## [v2.1.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v2.1.0) - 2017-01-16 |
| 89 | + |
| 90 | +- Added left-only and right-only varieties of `bitraverse`/`bifor` |
| 91 | + |
| 92 | +## [v2.0.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v2.0.0) - 2016-10-02 |
| 93 | + |
| 94 | +- Added `findMap` (@LiamGoodacre) |
| 95 | +- Relaxed `and`, `or`, `any`, `all` to `HeytingAlgebra` from `BooleanAlgebra` |
| 96 | +- Updated dependencies |
| 97 | + |
| 98 | +## [v1.0.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v1.0.0) - 2016-06-01 |
| 99 | + |
| 100 | +This release is intended for the PureScript 0.9.1 compiler and newer. |
| 101 | + |
| 102 | +**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. |
| 103 | + |
| 104 | +## [v1.0.0-rc.3](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v1.0.0-rc.3) - 2016-05-24 |
| 105 | + |
| 106 | +- Fixes for the upcoming psc 0.9.1 |
| 107 | + |
| 108 | +## [v1.0.0-rc.2](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v1.0.0-rc.2) - 2016-05-20 |
| 109 | + |
| 110 | +- Updated dependencies |
| 111 | +- `find` now returns the first value matching the predicate |
| 112 | + |
| 113 | +## [v1.0.0-rc.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v1.0.0-rc.1) - 2016-03-13 |
| 114 | + |
| 115 | +- Release candidate for the psc 0.8+ core libraries |
| 116 | + |
| 117 | +## [v0.4.2](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.4.2) - 2015-11-30 |
| 118 | + |
| 119 | +- `maximum`, `minimum`, `maximumBy`, `minimumBy` (@hdgarrood) |
| 120 | + |
| 121 | +## [v0.4.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.4.1) - 2015-11-01 |
| 122 | + |
| 123 | +- Removed unused imports |
| 124 | + |
| 125 | +## [v0.4.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.4.0) - 2015-06-30 |
| 126 | + |
| 127 | +This release works with versions 0.7.\* of the PureScript compiler. It will not work with older versions. If you are using an older version, you should require an older, compatible version of this library. |
| 128 | + |
| 129 | +## [v0.4.0-rc.2](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.4.0-rc.2) - 2015-06-06 |
| 130 | + |
| 131 | +- Fixed behaviour of `foldr` for `Array`. |
| 132 | + |
| 133 | +## [v0.4.0-rc.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.4.0-rc.1) - 2015-06-06 |
| 134 | + |
| 135 | +Initial release candidate of the library intended for the 0.7 compiler. |
| 136 | + |
| 137 | +## [v0.3.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.3.1) - 2015-03-19 |
| 138 | + |
| 139 | +Updated docs |
| 140 | + |
| 141 | +## [v0.3.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.3.0) - 2015-02-21 |
| 142 | + |
| 143 | +**This release requires PureScript v0.6.8 or later** |
| 144 | +- Updated dependencies |
| 145 | +- Added `Foldable` and `Traversable` instances for the `Additive`, `Dual`, `First`, `Last`, and `Multiplicative` monoids |
| 146 | + |
| 147 | +## [v0.2.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.2.1) - 2014-12-18 |
| 148 | + |
| 149 | +- Added `scanl` and `scanr` (@paf31) |
| 150 | + |
| 151 | +## [v0.2.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.2.0) - 2014-12-17 |
| 152 | + |
| 153 | +- Removed instance for deprecated `Ref` type |
| 154 | + |
| 155 | +## [v0.1.6](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.1.6) - 2014-12-11 |
| 156 | + |
| 157 | + |
| 158 | + |
| 159 | +## [v0.1.5](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.1.5) - 2014-12-02 |
| 160 | + |
| 161 | +- Added `mapAccumL` and `mapAccumR`. |
| 162 | + |
| 163 | +## [v0.1.4](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.1.4) - 2014-10-24 |
| 164 | + |
| 165 | +- Added `intercalate` to `Data.Foldable` (@garyb) |
| 166 | + |
| 167 | +## [v0.1.3](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.1.3) - 2014-07-14 |
| 168 | + |
| 169 | + |
| 170 | + |
| 171 | +## [v0.1.2](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.1.2) - 2014-06-14 |
| 172 | + |
| 173 | +- Now uses "proper" `Unit` type instead of `{}` (garyb) |
| 174 | +- Removed implied `Functor` constraint from some types that are `Applicative` (garyb) |
| 175 | + |
| 176 | +## [v0.1.1](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.1.1) - 2014-05-24 |
| 177 | + |
| 178 | +- Added `lookup` (paf31) |
| 179 | + |
| 180 | +## [v0.1.0](https://github.com/purescript/purescript-foldable-traversable/releases/tag/v0.1.0) - 2014-04-25 |
| 181 | + |
| 182 | + |
| 183 | + |
0 commit comments