Skip to content

Commit 7228b17

Browse files
Generate changelog and add PR template (#17)
* Add pull request template * Update CI in PS to v0.14.0-rc5 * Generate changelog based on GH release notes
1 parent 80f1869 commit 7228b17

File tree

3 files changed

+57
-1
lines changed

3 files changed

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

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
## [v3.0.0](https://github.com/purescript-node/purescript-node-path/releases/tag/v3.0.0) - 2018-05-27
16+
17+
- Updated for PureScript 0.12
18+
- The `resolve` function now uses `Effect` as it uses the filesystem to resolve paths
19+
20+
## [v2.0.0](https://github.com/purescript-node/purescript-node-path/releases/tag/v2.0.0) - 2017-04-04
21+
22+
Update for 0.11 (@anilanar)
23+
24+
## [v1.0.0](https://github.com/purescript-node/purescript-node-path/releases/tag/v1.0.0) - 2016-06-09
25+
26+
Update for 1.0 core libraries.
27+
28+
## [v0.4.0-rc.1](https://github.com/purescript-node/purescript-node-path/releases/tag/v0.4.0-rc.1) - 2015-06-20
29+
30+
Initial release candidate of the library intended for the 0.7 compiler.
31+
32+
## [v0.3.0](https://github.com/purescript-node/purescript-node-path/releases/tag/v0.3.0) - 2015-03-28
33+
34+
- Update docs
35+
- `join` is now named `concat`
36+
37+
## [v0.2.0](https://github.com/purescript-node/purescript-node-path/releases/tag/v0.2.0) - 2014-07-27
38+
39+
- Change `join :: FilePath -> FilePath -> FilePath` to `join :: [FilePath] -> FilePath` (@andreypopp)
40+
41+
## [v0.1.0](https://github.com/purescript-node/purescript-node-path/releases/tag/v0.1.0) - 2014-06-10
42+
43+
44+

0 commit comments

Comments
 (0)