Skip to content

Commit e4d664a

Browse files
Generate changelog and add PR template (#68)
* 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 e1b1c9a commit e4d664a

File tree

3 files changed

+99
-1
lines changed

3 files changed

+99
-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: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
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+
## [v5.0.1](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v5.0.1) - 2019-11-02
16+
17+
* Fix unused import warnings (@Ebmtranceboy)
18+
19+
## [v5.0.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v5.0.0) - 2019-05-26
20+
21+
* Move RowList related operations into the `Type.RowList` module. This was necessary in order to prepare for an upcoming compiler change for the v0.13.x series (purescript/purescript#3502). Note, however, that this version still supports compiler versions v0.12.2 and above. (@hdgarrood)
22+
23+
## [v4.0.2](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v4.0.2) - 2019-05-26
24+
25+
* Revert changes in v4.0.1, since they turned out to be breaking after all. This release is identical to v4.0.0.
26+
27+
## [v4.0.1](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v4.0.1) - 2019-05-26
28+
29+
* Fix attempted re-export of `Prim.Row.Cons` in `Type.Row`, to enable 0.13.x compiler compatibility (@joneshf)
30+
31+
## [v4.0.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v4.0.0) - 2019-01-23
32+
33+
* Reexport Prim.Boolean (@justinwoo)
34+
* Reexport RProxy and RLProxy (@fehrenbach)
35+
* Bump deps (@LiamGoodacre)
36+
37+
## [v3.0.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v3.0.0) - 2018-05-22
38+
39+
- Updated for PureScript 0.12
40+
- Made `Homogeneous` spelling consistent (@matthewleon)
41+
- Fixed functional dependency in `If` (@safareli)
42+
- Fixed functional dependency in `And` and `Or` (@LiamGoodacre)
43+
- `AppendSymbol` can now be run backwards (@paf31)
44+
- Added `ConsSymbol` (@kcsongor)
45+
46+
## [v2.7.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.7.0) - 2018-04-13
47+
48+
- Added `RowApply` (`+`) operator (@natefaubion)
49+
50+
## [v2.6.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.6.0) - 2017-12-10
51+
52+
Add `Type.Row.Homogeneous` for rows whose labels all have the same type (@paulyoung)
53+
54+
## [v2.5.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.5.0) - 2017-10-16
55+
56+
- Added `RowListRemove`, `RowListSet`, `RowListNub`, `RowListAppend` (@LiamGoodacre)
57+
58+
## [v2.4.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.4.0) - 2017-07-19
59+
60+
Add proxies for rows and `RowList`s (@LiamGoodacre)
61+
62+
## [v2.3.1](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.3.1) - 2017-07-11
63+
64+
- Added missing `And` constraint to `and` (@NasalMusician)
65+
66+
## [v2.3.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.3.0) - 2017-07-09
67+
68+
Add `RowToList` and `ListToRow` (@LiamGoodacre)
69+
70+
## [v2.2.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.2.0) - 2017-06-03
71+
72+
Add type-level `if..then..else` (@LiamGoodacre)
73+
74+
## [v2.1.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.1.0) - 2017-05-28
75+
76+
- Add type-level booleans and equality tests (@LiamGoodacre)
77+
- Add `RowLacks` type class which implement lacks constraints (@LiamGoodacre)
78+
79+
## [v2.0.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v2.0.0) - 2017-03-26
80+
81+
- Updated for PureScript 0.11
82+
83+
## [v1.0.0](https://github.com/purescript/purescript-typelevel-prelude/releases/tag/v1.0.0) - 2017-01-02
84+
85+
Initial versioned release
86+

0 commit comments

Comments
 (0)