Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog since v4.2.0 #137

Merged
merged 3 commits into from
Jan 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 28 additions & 44 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,27 @@ 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 (#133)
- Replaced `ComonadEnv` constraint with `ComonadAsk` in the `asks` function (#131)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is barely a breaking change, but as discussed in #131 it can be breaking.


New features:
- Added `Semigroup` and `Monoid` instances to `ContT`, `ExceptT`, `MaybeT`, `RWST`, `StateT`, `WriterT` (#115)
- Added `IdentityT` (#121)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's not a line here for #115?

Added Semigroup and Monoid instances to ContT, ExceptT, MaybeT, RWST, StateT, WriterT (#115)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Huh, not sure how I missed it. Thanks!

Bugfixes:
- Added `Semigroup` and `Monoid` superclasses to `MonadTell` and `MonadWriter`, respectively, to enforce the type class laws (#126)

Other improvements:
- Replaced `void $ modify` with `modify_` in example code (#119)
- Fixed documentation to use `Effect` instead of `Eff` (#124)
- Fixed documentation for `callCC` (#132)
- Migrated CI to GitHub Actions and updated installation instructions to use Spago (#134)
- Added a changelog and pull request template (#136, #137)

## [v4.2.0](https://github.com/purescript/purescript-transformers/releases/tag/v4.2.0) - 2019-02-03

* Add `MonadThrow` and `MonadError` instances for `Effect` (@safareli)
* Fix a typo in documentation (@Thimoteus)
- Added `MonadThrow` and `MonadError` instances for `Effect` (@safareli)
- Fixed a typo in documentation (@Thimoteus)

## [v4.1.0](https://github.com/purescript/purescript-transformers/releases/tag/v4.1.0) - 2018-05-27

Expand All @@ -36,7 +46,7 @@ Other improvements:

## [v3.4.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.4.0) - 2017-06-03

Add `Monoid` instance for `ReaderT` (@safareli)
- Added `Monoid` instance for `ReaderT` (@safareli)

## [v3.3.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.3.0) - 2017-05-25

Expand All @@ -48,7 +58,7 @@ Add `Monoid` instance for `ReaderT` (@safareli)

## [v3.1.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.1.0) - 2017-03-30

- Add `runListT`, `runListTRec` and `foldlRec` (@matthewleon)
- Added `runListT`, `runListTRec` and `foldlRec` (@matthewleon)

## [v3.0.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.0.0) - 2017-03-26

Expand All @@ -59,7 +69,7 @@ Add `Monoid` instance for `ReaderT` (@safareli)
## [v2.3.0](https://github.com/purescript/purescript-transformers/releases/tag/v2.3.0) - 2017-03-21

- `Lazy` instance for `RWST` (@mlang)
- Add `withResource` (@rightfold)
- Added `withResource` (@rightfold)

## [v2.2.0](https://github.com/purescript/purescript-transformers/releases/tag/v2.2.0) - 2017-01-20

Expand Down Expand Up @@ -98,14 +108,7 @@ 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-transformers/releases/tag/v1.0.0-rc.2) - 2016-05-20

- Added `Cont` (@parsonsmatt)
- Fixed warnings

## [v1.0.0-rc.1](https://github.com/purescript/purescript-transformers/releases/tag/v1.0.0-rc.1) - 2016-03-27

- Release candidate for the psc 0.8+ core libraries

## [v0.8.4](https://github.com/purescript/purescript-transformers/releases/tag/v0.8.4) - 2015-11-19

Expand All @@ -129,7 +132,7 @@ Relax constraints for `WriterT` instances (@xuwei-k)

## [v0.7.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.2) - 2015-09-03

More instances for `ReaderT` and `RWST` (@ethul)
- Added more instances for `ReaderT` and `RWST` (@ethul)

## [v0.7.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.1) - 2015-08-25

Expand All @@ -139,18 +142,6 @@ This release requires the 0.7.4.0 release of the PureScript compiler. Previous v
- More instances for `ExceptT`
- `ErrorT` has been removed in favor of `ExceptT`.

## [v0.7.0-rc.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.0-rc.2) - 2015-08-25
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've removed the release candidates and merged their contents into the proper releases as we don't usually include them in changelogs.


Fix module reexports.

## [v0.7.0-rc.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.0-rc.1) - 2015-08-23

This release requires the upcoming 0.7.4.0 release of the PureScript compiler. Previous versions of this library will _not_ work with `psc` versions <= 0.7.3.0.
- Simplified instance constraints.
- Module reexports of `Class` modules.
- More instances for `ExceptT`
- `ErrorT` has been removed in favor of `ExceptT`.

## [v0.6.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.6.1) - 2015-07-03

- Added `Distributive` instance for `ReaderT` (@freebroccolo)
Expand All @@ -159,33 +150,27 @@ This release requires the upcoming 0.7.4.0 release of the PureScript compiler. P

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.6.0-rc.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.6.0-rc.2) - 2015-06-09

Add `MonadEff` instances.

## [v0.6.0-rc.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.6.0-rc.1) - 2015-06-07

Initial release candidate of the library intended for the 0.7 compiler.
- Added `MonadEff` instances

## [v0.5.5](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.5) - 2015-04-17

Add `ExceptT` (@hdgarrood)
- Added `ExceptT` (@hdgarrood)

## [v0.5.4](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.4) - 2015-03-24

More documentation updates.
- More documentation updates.

## [v0.5.3](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.3) - 2015-03-24

Updated docs
- Updated docs

## [v0.5.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.2) - 2015-03-23

Add `MonadError` instance for `Maybe` (@pseudonom)
- Added `MonadError` instance for `Maybe` (@pseudonom)

## [v0.5.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.1) - 2015-02-26

Fix `RWST` `Apply` instance. (@joneshf)
- Fixed `RWST` `Apply` instance. (@joneshf)

## [v0.5.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.0) - 2015-02-21

Expand All @@ -202,19 +187,19 @@ Fix `RWST` `Apply` instance. (@joneshf)

## [v0.3.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.3.2) - 2014-12-16


- Added `execWriterT` (@MichaelXavier)

## [v0.3.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.3.1) - 2014-12-11


- Update array dependency (#25)

## [v0.3.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.3.0) - 2014-11-08

Updates for extracted `Identity` (@garyb)
- Updates for extracted `Identity` (@garyb)

## [v0.2.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.2.1) - 2014-09-04

Simplify superinstance constraints for ErrorT
- Simplify superinstance constraints for `ErrorT`

## [v0.2.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.2.0) - 2014-09-03

Expand Down Expand Up @@ -243,7 +228,7 @@ Simplify superinstance constraints for ErrorT

## [v0.0.4](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.4) - 2014-06-24

- Drop unnecessary var from type synonyms to prevents problems with partially applied type synonyms later on (garyb)
- Dropped unnecessary var from type synonyms to prevents problems with partially applied type synonyms later on (garyb)

## [v0.0.3](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.3) - 2014-06-14

Expand All @@ -255,5 +240,4 @@ Simplify superinstance constraints for ErrorT

## [v0.0.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.1) - 2014-05-25



- Initial release