From 8bea6bcc874117d8fb372a6eb1a1dfc4f239b76d Mon Sep 17 00:00:00 2001 From: milesfrain Date: Sun, 17 Jan 2021 21:52:46 -0800 Subject: [PATCH 1/2] Changelog updates since v4.1.1 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3ba1b5..b4e2923 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,20 @@ Notable changes to this project are documented in this file. The format is based ## [Unreleased] Breaking changes: +- Updated dependencies for PureScript 0.14 (#55) +- Added default parameter to `fromLeft` and `fromRight` and removed `Partial` constraint (#48) New features: +- Added `\/` alias for `either` (#51) +- Added lazy versions of `fromRight` and `fromLeft` (#59) Bugfixes: Other improvements: +- Migrated CI to GitHub Actions and updated installation instructions to use Spago (#58) +- Added a CHANGELOG.md file and pull request template (#62 #63) +- Corrected docs for `Apply` instance (#49) +- Improved documentation of `Either`s "do notation" (#52) ## [v4.1.1](https://github.com/purescript/purescript-either/releases/tag/v4.1.1) - 2018-11-30 From 441f25b0107f40e5f3a54166642c30c6fca2a32d Mon Sep 17 00:00:00 2001 From: milesfrain Date: Mon, 18 Jan 2021 21:39:40 -0800 Subject: [PATCH 2/2] fixups --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4e2923..0b9143b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ Notable changes to this project are documented in this file. The format is based ## [Unreleased] Breaking changes: -- Updated dependencies for PureScript 0.14 (#55) +- Added support for PureScript 0.14 and dropped support for all previous versions (#55) - Added default parameter to `fromLeft` and `fromRight` and removed `Partial` constraint (#48) New features: @@ -16,7 +16,7 @@ Bugfixes: Other improvements: - Migrated CI to GitHub Actions and updated installation instructions to use Spago (#58) -- Added a CHANGELOG.md file and pull request template (#62 #63) +- Added a CHANGELOG.md file and pull request template (#62, #63) - Corrected docs for `Apply` instance (#49) - Improved documentation of `Either`s "do notation" (#52)