Skip to content

Commit dacef78

Browse files
Generate changelog and add PR template (#44)
* Generate CHANGELOG.md file using notes from previous GH releases * Add pull request template
1 parent 54e5474 commit dacef78

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-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: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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+
## [v1.6.1](https://github.com/purescript/purescript-ordered-collections/releases/tag/v1.6.1) - 2019-04-12
16+
17+
* Fix doc comments for `Data.Map.toUnfoldableUnordered` (@bernhard-herzog)
18+
* Fix a syntax issue in preparation for upcoming parser changes in PureScript v0.13.0 (@natefaubion)
19+
20+
## [v1.6.0](https://github.com/purescript/purescript-ordered-collections/releases/tag/v1.6.0) - 2019-02-14
21+
22+
Added `intersection` and `intersectionWith` for `Map` (@karshan)
23+
24+
## [v1.5.0](https://github.com/purescript/purescript-ordered-collections/releases/tag/v1.5.0) - 2019-02-07
25+
26+
Added `insertWith` for `Map`
27+
28+
## [v1.4.0](https://github.com/purescript/purescript-ordered-collections/releases/tag/v1.4.0) - 2018-10-05
29+
30+
- Added `fromFoldableWithIndex` for `Map`
31+
32+
## [v1.3.0](https://github.com/purescript/purescript-ordered-collections/releases/tag/v1.3.0) - 2018-10-05
33+
34+
- Added `mapMaybe` functions for all types
35+
- Added `filter` for `Set` types
36+
37+
## [v1.2.0](https://github.com/purescript/purescript-ordered-collections/releases/tag/v1.2.0) - 2018-10-04
38+
39+
- Added `difference` for `Map` (@mschristiansen)
40+
41+
## [v1.1.0](https://github.com/purescript/purescript-ordered-collections/releases/tag/v1.1.0) - 2018-09-06
42+
43+
- Added `NonEmptySet`
44+
45+
## [v1.0.0](https://github.com/purescript/purescript-ordered-collections/releases/tag/v1.0.0) - 2018-05-24
46+
47+
Initial release
48+

0 commit comments

Comments
 (0)