Skip to content

Commit 63db964

Browse files
Generate changelog and add PR template (#46)
* Generate CHANGELOG.md file using notes from previous GH releases * Add pull request template
1 parent 46f24fb commit 63db964

File tree

2 files changed

+91
-0
lines changed

2 files changed

+91
-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: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
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.0](https://github.com/purescript/purescript-nonempty/releases/tag/v5.0.0) - 2018-05-23
16+
17+
- Updated for PureScript 0.12
18+
- Monomorphic versions of `Foldable1` functions have been removed
19+
20+
## [v4.3.0](https://github.com/purescript/purescript-nonempty/releases/tag/v4.3.0) - 2018-05-13
21+
22+
- Added `Unfoldable1` instance
23+
24+
## [v4.2.0](https://github.com/purescript/purescript-nonempty/releases/tag/v4.2.0) - 2018-02-25
25+
26+
- Added `Foldable1` instance (@matthewleon)
27+
28+
## [v4.1.1](https://github.com/purescript/purescript-nonempty/releases/tag/v4.1.1) - 2017-11-21
29+
30+
- Bumped minimum version of `purescript-foldable-traversable` (non-breaking) (@anttih)
31+
32+
## [v4.1.0](https://github.com/purescript/purescript-nonempty/releases/tag/v4.1.0) - 2017-11-21
33+
34+
`FunctorWithIndex`, `FoldableWithIndex`, `TraversableWithIndex` instances (@matthewleon, @safareli)
35+
36+
## [v4.0.0](https://github.com/purescript/purescript-nonempty/releases/tag/v4.0.0) - 2017-03-26
37+
38+
- Updated for PureScript 0.11
39+
40+
## [v3.0.0](https://github.com/purescript/purescript-nonempty/releases/tag/v3.0.0) - 2016-10-09
41+
42+
- Removed generics dependency for rearranged hierarchy
43+
44+
## [v2.0.0](https://github.com/purescript/purescript-nonempty/releases/tag/v2.0.0) - 2016-10-09
45+
46+
- Updated dependencies
47+
48+
## [v1.1.0](https://github.com/purescript/purescript-nonempty/releases/tag/v1.1.0) - 2016-07-01
49+
50+
- Added `Generic` instance
51+
52+
## [v1.0.0](https://github.com/purescript/purescript-nonempty/releases/tag/v1.0.0) - 2016-06-02
53+
54+
Updates for 1.0 core libraries
55+
56+
## [v0.2.0](https://github.com/purescript/purescript-nonempty/releases/tag/v0.2.0) - 2016-01-31
57+
58+
Updates for 0.8.0 (@sharkdp)
59+
60+
## [v0.1.4](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.4) - 2016-01-31
61+
62+
Add `head` and `tail` (@sharkdp)
63+
64+
## [v0.1.3](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.3) - 2016-01-14
65+
66+
Remove unused type var (@jonsterling)
67+
68+
## [v0.1.2](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.2) - 2015-07-23
69+
70+
Add `singleton` (@garyb)
71+
72+
## [v0.1.1](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.1) - 2015-07-13
73+
74+
75+
76+
## [v0.1.0](https://github.com/purescript/purescript-nonempty/releases/tag/v0.1.0) - 2015-07-07
77+
78+
Initial versioned release
79+

0 commit comments

Comments
 (0)