Skip to content

Commit 67a0bd8

Browse files
Generate changelog and add PR template (#35)
* 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 baf201f commit 67a0bd8

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+12
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

+1-1
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

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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.1.0](https://github.com/purescript-web/purescript-web-dom/releases/tag/v4.1.0) - 2020-06-07
16+
17+
Added `Show` instance for `NodeType` (@srghma)
18+
19+
## [v4.0.2](https://github.com/purescript-web/purescript-web-dom/releases/tag/v4.0.2) - 2020-05-18
20+
21+
Fixed FFI implementation for `hasAttribute` (#22, @srghma)
22+
23+
## [v4.0.1](https://github.com/purescript-web/purescript-web-dom/releases/tag/v4.0.1) - 2020-03-15
24+
25+
Add documentation explaining how to get hold of a `Document` in `Web.DOM.Document` (@hdgarrood, #19)
26+
27+
## [v4.0.0](https://github.com/purescript-web/purescript-web-dom/releases/tag/v4.0.0) - 2019-08-18
28+
29+
Fixed type of `mutationObserver` (@alextes)
30+
31+
## [v3.1.0](https://github.com/purescript-web/purescript-web-dom/releases/tag/v3.1.0) - 2019-08-18
32+
33+
Added `classList` for `Element` (@alextes)
34+
35+
## [v3.0.0](https://github.com/purescript-web/purescript-web-dom/releases/tag/v3.0.0) - 2019-06-02
36+
37+
`nodeValue` now returns `Effect (Maybe String)` as it is nullable (@bbarker)
38+
39+
## [v2.0.0](https://github.com/purescript-web/purescript-web-dom/releases/tag/v2.0.0) - 2019-02-23
40+
41+
Bumped `-web-events` dependency, `Event.defaultPrevented` is now effectful.
42+
43+
## [v1.0.0](https://github.com/purescript-web/purescript-web-dom/releases/tag/v1.0.0) - 2018-05-25
44+
45+
Initial release
46+

0 commit comments

Comments
 (0)