Skip to content

Commit cf65f53

Browse files
Generate changelog and add PR template (#136)
* Generate CHANGELOG.md file using notes from previous GH releases * Add pull request template * Update CI in PS to v0.14.0-rc5
1 parent 1516090 commit cf65f53

File tree

3 files changed

+272
-1
lines changed

3 files changed

+272
-1
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
**Description of the change**
2+
3+
Clearly and concisely describe the purpose of the pull request. If this PR relates to an existing issue or change proposal, please link to it. Include any other background context that would help reviewers understand the motivation for this PR.
4+
5+
---
6+
7+
**Checklist:**
8+
9+
- [ ] Added the change to the changelog's "Unreleased" section with a reference to this PR (e.g. "- Made a change (#0000)")
10+
- [ ] Linked any existing issues or proposals that this pull request should close
11+
- [ ] Updated or added relevant documentation
12+
- [ ] Added a test for the contribution (if applicable)

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: purescript-contrib/setup-purescript@main
1616
with:
17-
purescript: "0.14.0-rc3"
17+
purescript: "0.14.0-rc5"
1818

1919
- uses: actions/setup-node@v1
2020
with:

CHANGELOG.md

Lines changed: 259 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,259 @@
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.2.0](https://github.com/purescript/purescript-transformers/releases/tag/v4.2.0) - 2019-02-03
16+
17+
* Add `MonadThrow` and `MonadError` instances for `Effect` (@safareli)
18+
* Fix a typo in documentation (@Thimoteus)
19+
20+
## [v4.1.0](https://github.com/purescript/purescript-transformers/releases/tag/v4.1.0) - 2018-05-27
21+
22+
- Added `modify_` for the old-style `modify`
23+
24+
## [v4.0.0](https://github.com/purescript/purescript-transformers/releases/tag/v4.0.0) - 2018-05-23
25+
26+
- Updated for PureScript 0.12
27+
- The `MonadState` `modify` function now returns the modified state
28+
29+
## [v3.6.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.6.0) - 2018-04-07
30+
31+
- Added `ComonadStore` instances for `EnvT` and `TracedT` (@colin-passiv)
32+
33+
## [v3.5.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.5.0) - 2017-11-23
34+
35+
- Added `Foldable` and `Traversable` instances for `EnvT` (@cryogenian)
36+
37+
## [v3.4.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.4.0) - 2017-06-03
38+
39+
Add `Monoid` instance for `ReaderT` (@safareli)
40+
41+
## [v3.3.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.3.0) - 2017-05-25
42+
43+
- Added the `writer` function
44+
45+
## [v3.2.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.2.0) - 2017-04-08
46+
47+
- Added `try` for `MonadError` (@rightfold)
48+
49+
## [v3.1.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.1.0) - 2017-03-30
50+
51+
- Add `runListT`, `runListTRec` and `foldlRec` (@matthewleon)
52+
53+
## [v3.0.0](https://github.com/purescript/purescript-transformers/releases/tag/v3.0.0) - 2017-03-26
54+
55+
- Updated for PureScript 0.11
56+
- The `MonadError` class has been split into `MonadThrow` and `MonadError` (@natefaubion)
57+
- Fixed export of `ListT` constructors (@matthewleon)
58+
59+
## [v2.3.0](https://github.com/purescript/purescript-transformers/releases/tag/v2.3.0) - 2017-03-21
60+
61+
- `Lazy` instance for `RWST` (@mlang)
62+
- Add `withResource` (@rightfold)
63+
64+
## [v2.2.0](https://github.com/purescript/purescript-transformers/releases/tag/v2.2.0) - 2017-01-20
65+
66+
- Added `Alternative` and `Plus` instances for `RWST` (@mlang)
67+
68+
## [v2.1.0](https://github.com/purescript/purescript-transformers/releases/tag/v2.1.0) - 2017-01-03
69+
70+
- Added `Alt` instance for `RWST` (@mlang)
71+
72+
## [v2.0.2](https://github.com/purescript/purescript-transformers/releases/tag/v2.0.2) - 2016-11-09
73+
74+
- Fixed name shadowing warnings in PureScript 0.10.2 (@clayrat)
75+
76+
## [v2.0.1](https://github.com/purescript/purescript-transformers/releases/tag/v2.0.1) - 2016-10-11
77+
78+
- Fixed overly-applied type synonyms for `Cont`, `Except`, and `Store`
79+
80+
## [v2.0.0](https://github.com/purescript/purescript-transformers/releases/tag/v2.0.0) - 2016-10-10
81+
82+
This release features a number of breaking changes:
83+
- The signature for `callCC` is now rank-2 to allow for any result to be discarded #74 (@jqyu)
84+
- Functional dependencies have been added to all classes
85+
- `Newtype` instances have been derived for all transformers
86+
- `ListT.scanl` implementation has been fixed #72 (@DanielGronau)
87+
- `MonadReader` has been split into `MonadAsk` and `MonadReader`
88+
- `MonadWriter` has been split into `MonadTell` and `MonadWriter`
89+
- `ComonadEnv` has been split into `ComonadAsk` and `ComonadEnv`
90+
- `MonadTrans` class is now in `Control.Monad.Trans.Class`
91+
- `ComonadTrans` class is now in `Control.Comonad.Trans.Class`
92+
- `ExceptT`'s `apply` and `bind` now behave consistently, at the cost of tightening the `m` constraint to `Monad` for the `Apply` and `Applicative` instance
93+
- The `MonadRWS` class has been removed
94+
95+
## [v1.0.0](https://github.com/purescript/purescript-transformers/releases/tag/v1.0.0) - 2016-06-01
96+
97+
This release is intended for the PureScript 0.9.1 compiler and newer.
98+
99+
**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.
100+
101+
## [v1.0.0-rc.2](https://github.com/purescript/purescript-transformers/releases/tag/v1.0.0-rc.2) - 2016-05-20
102+
103+
- Added `Cont` (@parsonsmatt)
104+
- Fixed warnings
105+
106+
## [v1.0.0-rc.1](https://github.com/purescript/purescript-transformers/releases/tag/v1.0.0-rc.1) - 2016-03-27
107+
108+
- Release candidate for the psc 0.8+ core libraries
109+
110+
## [v0.8.4](https://github.com/purescript/purescript-transformers/releases/tag/v0.8.4) - 2015-11-19
111+
112+
- Fixed issue with re-exports
113+
114+
## [v0.8.3](https://github.com/purescript/purescript-transformers/releases/tag/v0.8.3) - 2015-11-19
115+
116+
- Fixed import warnings raised in psc 0.7.6
117+
118+
## [v0.8.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.8.2) - 2015-11-01
119+
120+
Relax constraints for `WriterT` instances (@xuwei-k)
121+
122+
## [v0.8.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.8.1) - 2015-09-16
123+
124+
- Fixed unused type variable warnings.
125+
126+
## [v0.8.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.8.0) - 2015-09-10
127+
128+
- Added `MonadRec` instance for `RWST`. This changes some details of the RWST implementation so may be a breaking change. (@ethul)
129+
130+
## [v0.7.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.2) - 2015-09-03
131+
132+
More instances for `ReaderT` and `RWST` (@ethul)
133+
134+
## [v0.7.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.1) - 2015-08-25
135+
136+
This release requires the 0.7.4.0 release of the PureScript compiler. Previous versions of this library will _not_ work with `psc` versions <= 0.7.3.0.
137+
- Simplified instance constraints.
138+
- Module reexports of `Class` modules.
139+
- More instances for `ExceptT`
140+
- `ErrorT` has been removed in favor of `ExceptT`.
141+
142+
## [v0.7.0-rc.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.0-rc.2) - 2015-08-25
143+
144+
Fix module reexports.
145+
146+
## [v0.7.0-rc.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.7.0-rc.1) - 2015-08-23
147+
148+
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.
149+
- Simplified instance constraints.
150+
- Module reexports of `Class` modules.
151+
- More instances for `ExceptT`
152+
- `ErrorT` has been removed in favor of `ExceptT`.
153+
154+
## [v0.6.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.6.1) - 2015-07-03
155+
156+
- Added `Distributive` instance for `ReaderT` (@freebroccolo)
157+
158+
## [v0.6.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.6.0) - 2015-06-30
159+
160+
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.
161+
162+
## [v0.6.0-rc.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.6.0-rc.2) - 2015-06-09
163+
164+
Add `MonadEff` instances.
165+
166+
## [v0.6.0-rc.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.6.0-rc.1) - 2015-06-07
167+
168+
Initial release candidate of the library intended for the 0.7 compiler.
169+
170+
## [v0.5.5](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.5) - 2015-04-17
171+
172+
Add `ExceptT` (@hdgarrood)
173+
174+
## [v0.5.4](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.4) - 2015-03-24
175+
176+
More documentation updates.
177+
178+
## [v0.5.3](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.3) - 2015-03-24
179+
180+
Updated docs
181+
182+
## [v0.5.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.2) - 2015-03-23
183+
184+
Add `MonadError` instance for `Maybe` (@pseudonom)
185+
186+
## [v0.5.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.1) - 2015-02-26
187+
188+
Fix `RWST` `Apply` instance. (@joneshf)
189+
190+
## [v0.5.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.5.0) - 2015-02-21
191+
192+
**This release requires PureScript v0.6.8 or later**
193+
- Updated dependencies
194+
195+
## [v0.4.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.4.1) - 2015-02-19
196+
197+
- `Error` constraint removed where possible (@pseudonom)
198+
199+
## [v0.4.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.4.0) - 2015-01-10
200+
201+
- Updated `purescript-identity` dependency (@garyb)
202+
203+
## [v0.3.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.3.2) - 2014-12-16
204+
205+
206+
207+
## [v0.3.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.3.1) - 2014-12-11
208+
209+
210+
211+
## [v0.3.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.3.0) - 2014-11-08
212+
213+
Updates for extracted `Identity` (@garyb)
214+
215+
## [v0.2.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.2.1) - 2014-09-04
216+
217+
Simplify superinstance constraints for ErrorT
218+
219+
## [v0.2.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.2.0) - 2014-09-03
220+
221+
- Moved `Free` and `Trampoline` back to [`purescript-free`](https://github.com/purescript-contrib/purescript-free) (@ethul)
222+
223+
## [v0.1.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.1.2) - 2014-08-31
224+
225+
- `Lazy1` instance for `StateT` (@paf31)
226+
227+
## [v0.1.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.1.1) - 2014-08-27
228+
229+
- `Comonad` and `Extend` instances for `Identity` (@joneshf)
230+
231+
## [v0.1.0](https://github.com/purescript/purescript-transformers/releases/tag/v0.1.0) - 2014-08-11
232+
233+
- Add `Alt`, `Plus`, `MonadPlus`, update `Alternative` (@garyb)
234+
235+
## [v0.0.6](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.6) - 2014-08-05
236+
237+
- All transformers are now defined as `newtype`s (@garyb)
238+
239+
## [v0.0.5](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.5) - 2014-08-02
240+
241+
- Added `Control.Monad.RWS` and `Control.Monad.RWST` (@joneshf)
242+
- Updated FFI code to work for changes in codegen (@garyb)
243+
244+
## [v0.0.4](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.4) - 2014-06-24
245+
246+
- Drop unnecessary var from type synonyms to prevents problems with partially applied type synonyms later on (garyb)
247+
248+
## [v0.0.3](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.3) - 2014-06-14
249+
250+
- Now uses "proper" `Unit` type instead of `{}` (garyb)
251+
252+
## [v0.0.2](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.2) - 2014-06-08
253+
254+
- Now includes `Control.Monad.Free` (ethul)
255+
256+
## [v0.0.1](https://github.com/purescript/purescript-transformers/releases/tag/v0.0.1) - 2014-05-25
257+
258+
259+

0 commit comments

Comments
 (0)