|
| 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.0.1](https://github.com/purescript/purescript-maybe/releases/tag/v4.0.1) - 2018-12-01 |
| 16 | + |
| 17 | +Removed old reference to `return` from doc comment (@gasi) |
| 18 | + |
| 19 | +## [v4.0.0](https://github.com/purescript/purescript-maybe/releases/tag/v4.0.0) - 2018-05-23 |
| 20 | + |
| 21 | +Updated for PureScript 0.12 |
| 22 | + |
| 23 | +## [v3.1.0](https://github.com/purescript/purescript-maybe/releases/tag/v3.1.0) - 2018-04-07 |
| 24 | + |
| 25 | +- Added instances up to `MonadZero` for `First` and `Last` (@MonoidMusician) |
| 26 | +- Added `optional` combinator (@eric-corumdigital) |
| 27 | + |
| 28 | +## [v3.0.0](https://github.com/purescript/purescript-maybe/releases/tag/v3.0.0) - 2017-03-25 |
| 29 | + |
| 30 | +- Updated for PureScript 0.11 |
| 31 | + |
| 32 | +## [v2.1.1](https://github.com/purescript/purescript-maybe/releases/tag/v2.1.1) - 2017-03-04 |
| 33 | + |
| 34 | +- Fix lower bound of prelude dependency (@aij) |
| 35 | + |
| 36 | +## [v2.1.0](https://github.com/purescript/purescript-maybe/releases/tag/v2.1.0) - 2017-03-02 |
| 37 | + |
| 38 | +- Added `Eq1` and `Ord1` instances |
| 39 | + |
| 40 | +## [v2.0.1](https://github.com/purescript/purescript-maybe/releases/tag/v2.0.1) - 2016-10-23 |
| 41 | + |
| 42 | +- Fixed ordering of `Just` and `Nothing` so that `∀ a. Nothing < Just a` |
| 43 | + |
| 44 | +## [v2.0.0](https://github.com/purescript/purescript-maybe/releases/tag/v2.0.0) - 2016-10-02 |
| 45 | + |
| 46 | +- Updated dependencies |
| 47 | +- Added `Newtype` instances for `First` and `Last` |
| 48 | + |
| 49 | +## [v1.0.0](https://github.com/purescript/purescript-maybe/releases/tag/v1.0.0) - 2016-06-01 |
| 50 | + |
| 51 | +This release is intended for the PureScript 0.9.1 compiler and newer. |
| 52 | + |
| 53 | +**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. |
| 54 | + |
| 55 | +## [v1.0.0-rc.2](https://github.com/purescript/purescript-maybe/releases/tag/v1.0.0-rc.2) - 2016-03-20 |
| 56 | + |
| 57 | +- Updated for new `Prelude` class hierarchies |
| 58 | + |
| 59 | +## [v1.0.0-rc.1](https://github.com/purescript/purescript-maybe/releases/tag/v1.0.0-rc.1) - 2016-03-13 |
| 60 | + |
| 61 | +- Release candidate for the psc 0.8+ core libraries |
| 62 | + |
| 63 | +## [v0.3.5](https://github.com/purescript/purescript-maybe/releases/tag/v0.3.5) - 2015-11-15 |
| 64 | + |
| 65 | +- Fixed shadowed type variable warning (@zudov) |
| 66 | + |
| 67 | +## [v0.3.4](https://github.com/purescript/purescript-maybe/releases/tag/v0.3.4) - 2015-08-05 |
| 68 | + |
| 69 | +- Fixed partial pattern match warning for `fromJust` |
| 70 | + |
| 71 | +## [v0.3.3](https://github.com/purescript/purescript-maybe/releases/tag/v0.3.3) - 2015-07-31 |
| 72 | + |
| 73 | +- Added "lazy" versions of `maybe` and `fromMaybe` |
| 74 | + |
| 75 | +## [v0.3.2](https://github.com/purescript/purescript-maybe/releases/tag/v0.3.2) - 2015-07-07 |
| 76 | + |
| 77 | +Fixed the `Semigroup` behaviour for `Maybe`. This is technically a breaking change, but only because `v0.3.0` and `v0.3.1` had the improper behaviour, all previous versions behaved this way. |
| 78 | + |
| 79 | +## [v0.3.1](https://github.com/purescript/purescript-maybe/releases/tag/v0.3.1) - 2015-07-02 |
| 80 | + |
| 81 | +- Corrected `Invariant Maybe` instance name (@hdgarrood) |
| 82 | + |
| 83 | +## [v0.3.0](https://github.com/purescript/purescript-maybe/releases/tag/v0.3.0) - 2015-06-30 |
| 84 | + |
| 85 | +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. |
| 86 | + |
| 87 | +## [v0.3.0-rc.1](https://github.com/purescript/purescript-maybe/releases/tag/v0.3.0-rc.1) - 2015-06-06 |
| 88 | + |
| 89 | +Initial release candidate of the library intended for the 0.7 compiler. |
| 90 | + |
| 91 | +## [v0.2.2](https://github.com/purescript/purescript-maybe/releases/tag/v0.2.2) - 2015-03-17 |
| 92 | + |
| 93 | +Update docs |
| 94 | + |
| 95 | +## [v0.2.1](https://github.com/purescript/purescript-maybe/releases/tag/v0.2.1) - 2014-09-03 |
| 96 | + |
| 97 | +- Added `Extend` and `Semigroup` instances (@joneshf) |
| 98 | + |
| 99 | +## [v0.2.0](https://github.com/purescript/purescript-maybe/releases/tag/v0.2.0) - 2014-08-11 |
| 100 | + |
| 101 | +- Add `Alt`, `Plus`, `MonadPlus`, update `Alternative` (@garyb) |
| 102 | + |
| 103 | +## [v0.1.3](https://github.com/purescript/purescript-maybe/releases/tag/v0.1.3) - 2014-05-22 |
| 104 | + |
| 105 | +- Added `fromJust` in `Data.Maybe.Unsafe` (garyb) |
| 106 | + |
| 107 | +## [v0.1.2](https://github.com/purescript/purescript-maybe/releases/tag/v0.1.2) - 2014-04-25 |
| 108 | + |
| 109 | + |
| 110 | + |
| 111 | +## [v0.1.1](https://github.com/purescript/purescript-maybe/releases/tag/v0.1.1) - 2014-04-10 |
| 112 | + |
| 113 | + |
| 114 | + |
| 115 | +## [v0.1.0](https://github.com/purescript/purescript-maybe/releases/tag/v0.1.0) - 2014-04-10 |
| 116 | + |
| 117 | + |
| 118 | + |
0 commit comments