Skip to content

Commit 138cb52

Browse files
Generate changelog and add PR template (#22)
* Generate CHANGELOG.md file using notes from previous GH releases * Add pull request template
1 parent feacadf commit 138cb52

File tree

2 files changed

+90
-0
lines changed

2 files changed

+90
-0
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)

CHANGELOG.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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.0.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v4.0.1) - 2019-06-08
16+
17+
* Relax upper bounds to allow building with 0.13. (@klntsky)
18+
19+
## [v4.0.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v4.0.0) - 2018-05-29
20+
21+
Updates for 0.12
22+
23+
## [v3.1.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v3.1.0) - 2017-08-22
24+
25+
Add `question` (@dgendill)
26+
27+
## [v3.0.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v3.0.1) - 2017-08-04
28+
29+
Relax the upper bound in `bower.json` on `node-process`, so that this library can be depended on together with version 5.0.0 of `node-process` without any hassle.
30+
31+
## [v3.0.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v3.0.0) - 2017-04-05
32+
33+
Updates for 0.11 compiler
34+
35+
## [v2.0.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v2.0.0) - 2016-10-22
36+
37+
- Updated dependencies
38+
39+
## [v1.0.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v1.0.0) - 2016-06-13
40+
41+
Updates for 0.9.1 compiler (@kika)
42+
43+
## [v0.4.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.4.1) - 2016-03-07
44+
45+
Fix a bug with completers (@Thimoteus)
46+
47+
## [v0.4.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.4.0) - 2016-02-27
48+
49+
- Expose more of the node API (@spicydonuts, #4)
50+
51+
## [v0.3.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.3.1) - 2015-08-10
52+
53+
Add `close` (@aspidites)
54+
55+
## [v0.3.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.3.0) - 2015-08-05
56+
57+
Flip arguments to `setLineHandler` (@aspidites)
58+
59+
## [v0.2.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.2.0) - 2015-07-14
60+
61+
Release for 0.7 compiler.
62+
63+
## [v0.2.0-rc.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.2.0-rc.1) - 2015-06-12
64+
65+
Initial release for the 0.7 compiler release.
66+
67+
## [v0.1.2](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.1.2) - 2014-10-29
68+
69+
70+
71+
## [v0.1.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.1.1) - 2014-08-27
72+
73+
74+
75+
## [v0.1.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.1.0) - 2014-06-14
76+
77+
78+

0 commit comments

Comments
 (0)