From 19972c54874fc0a131221ed94498dafee0eb75c3 Mon Sep 17 00:00:00 2001 From: Thomas Honeyman Date: Wed, 20 Jan 2021 20:50:33 -0800 Subject: [PATCH 1/2] Changelog since v4.1.0 --- CHANGELOG.md | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ae8424..de54bd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,16 @@ 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 (#35) +- Removesd `Costrong` and `Cochoice` from `Costar` (#38) New features: Bugfixes: Other improvements: +- Migrated CI to GitHub Actions and updated installation instructions to use Spago (#36) +- Added a changelog and pull request template (#39, #40) ## [v4.1.0](https://github.com/purescript/purescript-profunctor/releases/tag/v4.1.0) - 2019-08-21 @@ -40,18 +44,10 @@ Added more instances for `Joker` (@masaeedu) ## [v1.0.0](https://github.com/purescript/purescript-profunctor/releases/tag/v1.0.0) - 2016-06-01 -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.2](https://github.com/purescript/purescript-profunctor/releases/tag/v1.0.0-rc.2) - 2016-05-20 +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. - Fixed unused import warnings -## [v1.0.0-rc.1](https://github.com/purescript/purescript-profunctor/releases/tag/v1.0.0-rc.1) - 2016-03-25 - -- Release candidate for the psc 0.8+ core libraries - ## [v0.3.2](https://github.com/purescript/purescript-profunctor/releases/tag/v0.3.2) - 2016-01-03 Add `Closed`, `Costrong` and `Cochoice` (@zrho) @@ -64,10 +60,6 @@ Add `Star`. 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. -## [v0.3.0-rc.1](https://github.com/purescript/purescript-profunctor/releases/tag/v0.3.0-rc.1) - 2015-06-06 - -Initial release candidate of the library intended for the 0.7 compiler. - ## [v0.2.1](https://github.com/purescript/purescript-profunctor/releases/tag/v0.2.1) - 2015-03-19 Update docs @@ -83,5 +75,6 @@ Update docs ## [v0.0.2](https://github.com/purescript/purescript-profunctor/releases/tag/v0.0.2) - 2015-01-08 +- Initial release. - Added `Choice` and `Strong` (@joneshf) From e923088a06cb3112b7c38cf7032b32a9a5d16584 Mon Sep 17 00:00:00 2001 From: JordanMartinez Date: Thu, 21 Jan 2021 12:56:48 -0800 Subject: [PATCH 2/2] Fix minor typo in 'Removed' spelling --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de54bd0..3398647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Notable changes to this project are documented in this file. The format is based Breaking changes: - Added support for PureScript 0.14 and dropped support for all previous versions (#35) -- Removesd `Costrong` and `Cochoice` from `Costar` (#38) +- Removed `Costrong` and `Cochoice` from `Costar` (#38) New features: