Skip to content

Commit 87ff34c

Browse files
Generate changelog and add PR template (#72)
* 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 1b9c136 commit 87ff34c

File tree

3 files changed

+136
-1
lines changed

3 files changed

+136
-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: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
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-control/releases/tag/v4.2.0) - 2019-09-05
16+
17+
Added `Newtype` instance for `Alternate` (@masaeedu)
18+
19+
## [v4.1.0](https://github.com/purescript/purescript-control/releases/tag/v4.1.0) - 2018-07-17
20+
21+
- Restored `Alternate` newtype that used to exist in `-monoid` (@Thimoteus)
22+
23+
## [v4.0.0](https://github.com/purescript/purescript-control/releases/tag/v4.0.0) - 2018-05-22
24+
25+
- Updated for PureScript 0.12
26+
- The definition of `fix` was fixed to allow sharing
27+
28+
## [v3.3.1](https://github.com/purescript/purescript-control/releases/tag/v3.3.1) - 2017-09-21
29+
30+
Docs fix for `MonadZero` (@spicydonuts)
31+
32+
## [v3.3.0](https://github.com/purescript/purescript-control/releases/tag/v3.3.0) - 2017-06-04
33+
34+
`Lazy` instance for `Unit` (@matthewleon)
35+
36+
## [v3.2.0](https://github.com/purescript/purescript-control/releases/tag/v3.2.0) - 2017-05-29
37+
38+
- Added `Extend` instance for `Array` (@i-am-tom)
39+
40+
## [v3.1.0](https://github.com/purescript/purescript-control/releases/tag/v3.1.0) - 2017-05-28
41+
42+
`Lazy` instance for functions (@matthewleon)
43+
44+
## [v3.0.0](https://github.com/purescript/purescript-control/releases/tag/v3.0.0) - 2017-03-25
45+
46+
- Updated for PureScript 0.11
47+
48+
## [v2.0.0](https://github.com/purescript/purescript-control/releases/tag/v2.0.0) - 2016-10-01
49+
50+
- Updated dependencies
51+
52+
## [v1.0.0](https://github.com/purescript/purescript-control/releases/tag/v1.0.0) - 2016-06-01
53+
54+
This release is intended for the PureScript 0.9.1 compiler and newer.
55+
56+
**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.
57+
58+
## [v1.0.0-rc.2](https://github.com/purescript/purescript-control/releases/tag/v1.0.0-rc.2) - 2016-05-19
59+
60+
- Fix warning
61+
62+
## [v1.0.0-rc.1](https://github.com/purescript/purescript-control/releases/tag/v1.0.0-rc.1) - 2016-03-01
63+
64+
- Release candidate for the psc 0.8+ core libraries
65+
66+
## [v0.3.2](https://github.com/purescript/purescript-control/releases/tag/v0.3.2) - 2015-11-02
67+
68+
- Removed unused imports
69+
70+
## [v0.3.1](https://github.com/purescript/purescript-control/releases/tag/v0.3.1) - 2015-09-16
71+
72+
- Fixed unused type variable warning (@zudov)
73+
74+
## [v0.3.0](https://github.com/purescript/purescript-control/releases/tag/v0.3.0) - 2015-06-30
75+
76+
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.
77+
78+
## [v0.3.0-rc.2](https://github.com/purescript/purescript-control/releases/tag/v0.3.0-rc.2) - 2015-06-06
79+
80+
- Added instances for `Array` that were orphans previously.
81+
82+
## [v0.3.0-rc.1](https://github.com/purescript/purescript-control/releases/tag/v0.3.0-rc.1) - 2015-06-06
83+
84+
Initial release candidate of the library intended for the 0.7 compiler.
85+
86+
## [v0.2.6](https://github.com/purescript/purescript-control/releases/tag/v0.2.6) - 2015-03-24
87+
88+
Add `extend`.
89+
90+
## [v0.2.5](https://github.com/purescript/purescript-control/releases/tag/v0.2.5) - 2015-03-22
91+
92+
Updated docs
93+
94+
## [v0.2.4](https://github.com/purescript/purescript-control/releases/tag/v0.2.4) - 2015-03-19
95+
96+
Add `filterM` (@pseudonom)
97+
98+
## [v0.2.3](https://github.com/purescript/purescript-control/releases/tag/v0.2.3) - 2015-03-18
99+
100+
Update docs (@hdgarrood)
101+
102+
## [v0.2.2](https://github.com/purescript/purescript-control/releases/tag/v0.2.2) - 2015-02-26
103+
104+
- Added `<$` and `$>` (@joneshf)
105+
106+
## [v0.2.1](https://github.com/purescript/purescript-control/releases/tag/v0.2.1) - 2014-08-26
107+
108+
- Added `Extend` and `Comonad` (@joneshf)
109+
110+
## [v0.2.0](https://github.com/purescript/purescript-control/releases/tag/v0.2.0) - 2014-08-11
111+
112+
- Added `Alternative`, `Alt`, `Plus` (@garyb)
113+
- Added `MonadPlus`, `guard` (@garyb)
114+
- Added `Lazy`, `Lazy1`, `Lazy2`, `fix`, `fix1`, `fix2` (@garyb & @paf31)
115+
116+
## [v0.1.1](https://github.com/purescript/purescript-control/releases/tag/v0.1.1) - 2014-06-14
117+
118+
- Now uses "proper" `Unit` type instead of `{}` (garyb)
119+
120+
## [v0.1.0](https://github.com/purescript/purescript-control/releases/tag/v0.1.0) - 2014-04-25
121+
122+
123+

0 commit comments

Comments
 (0)