Skip to content

Commit deef0a9

Browse files
Generate changelog and add PR template (#24)
* Generate CHANGELOG.md file using notes from previous GH releases * Add pull request template
1 parent 93a1a32 commit deef0a9

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-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: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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/purescript-identity/releases/tag/v4.1.0) - 2018-10-23
16+
17+
- Added `Foldable1` and `Traversable1` instances
18+
- Added instances for the `-WithIndex` classes
19+
20+
(@MonoidMusician)
21+
22+
## [v4.0.0](https://github.com/purescript/purescript-identity/releases/tag/v4.0.0) - 2018-05-23
23+
24+
Updated for PureScript 0.12
25+
26+
## [v3.1.0](https://github.com/purescript/purescript-identity/releases/tag/v3.1.0) - 2017-04-24
27+
28+
- Added `Eq1` and `Ord1` instances
29+
30+
## [v3.0.0](https://github.com/purescript/purescript-identity/releases/tag/v3.0.0) - 2017-03-26
31+
32+
- Updated for PureScript 0.11
33+
34+
## [v2.1.0](https://github.com/purescript/purescript-identity/releases/tag/v2.1.0) - 2017-03-23
35+
36+
- Added `Lazy` instance (@matthewleon)
37+
38+
## [v2.0.0](https://github.com/purescript/purescript-identity/releases/tag/v2.0.0) - 2016-10-03
39+
40+
- Updated dependencies
41+
42+
## [v1.1.0](https://github.com/purescript/purescript-identity/releases/tag/v1.1.0) - 2016-07-19
43+
44+
- Added instance for `Alt` (@paluh)
45+
46+
## [v1.0.0](https://github.com/purescript/purescript-identity/releases/tag/v1.0.0) - 2016-06-01
47+
48+
This release is intended for the PureScript 0.9.1 compiler and newer.
49+
50+
**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.
51+
52+
## [v1.0.0-rc.2](https://github.com/purescript/purescript-identity/releases/tag/v1.0.0-rc.2) - 2016-03-27
53+
54+
- Updated for new `Prelude` class hierarchies
55+
56+
## [v1.0.0-rc.1](https://github.com/purescript/purescript-identity/releases/tag/v1.0.0-rc.1) - 2016-03-13
57+
58+
- Release candidate for the psc 0.8+ core libraries
59+
60+
## [v0.4.1](https://github.com/purescript/purescript-identity/releases/tag/v0.4.1) - 2015-11-01
61+
62+
- Removed unused imports
63+
64+
## [v0.4.0](https://github.com/purescript/purescript-identity/releases/tag/v0.4.0) - 2015-06-30
65+
66+
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.
67+
68+
## [v0.4.0-rc.1](https://github.com/purescript/purescript-identity/releases/tag/v0.4.0-rc.1) - 2015-06-07
69+
70+
Initial release candidate of the library intended for the 0.7 compiler.
71+
72+
## [v0.3.0](https://github.com/purescript/purescript-identity/releases/tag/v0.3.0) - 2015-02-21
73+
74+
**This release requires PureScript v0.6.8 or later**
75+
- Updated dependencies
76+
77+
## [v0.2.0](https://github.com/purescript/purescript-identity/releases/tag/v0.2.0) - 2015-01-10
78+
79+
- Updated `purescript-foldable-traversable` dependency (@philopon)
80+
81+
## [v0.1.0](https://github.com/purescript/purescript-identity/releases/tag/v0.1.0) - 2014-11-01
82+
83+
- Initial release
84+

0 commit comments

Comments
 (0)