Skip to content

Commit 8445e94

Browse files
Generate changelog and add PR template (#49)
* Generate CHANGELOG.md file using notes from previous GH releases * Add pull request template * Update CI in PS to v0.14.0-rc5
1 parent 28b73e9 commit 8445e94

File tree

3 files changed

+149
-1
lines changed

3 files changed

+149
-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: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
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.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v5.0.1) - 2019-07-24
16+
17+
Relax upper bound on `node-buffer`
18+
19+
## [v5.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v5.0.0) - 2018-05-29
20+
21+
Updates for 0.12
22+
23+
## [v4.0.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v4.0.1) - 2018-03-05
24+
25+
- Raised upper bounds on `purescript-js-date` dependency (@justinwoo)
26+
27+
## [v4.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v4.0.0) - 2017-04-04
28+
29+
Updates for 0.11 (@anilanar)
30+
31+
## [v3.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v3.0.0) - 2016-10-21
32+
33+
- Updated dependencies
34+
35+
## [v2.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v2.0.0) - 2016-07-31
36+
37+
- Updated dependencies
38+
39+
## [v1.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v1.0.0) - 2016-06-11
40+
41+
Update for 1.0 core libraries and PureScript 0.9.
42+
43+
## [v0.11.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.11.0) - 2016-03-31
44+
45+
Bump dependencies (`purescript-node-streams`~0.4.0).
46+
47+
## [v0.10.2](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.10.2) - 2016-03-31
48+
49+
Update README
50+
51+
## [v0.10.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.10.1) - 2016-03-05
52+
53+
- Fix exceptions thrown by `Node.FS.Sync.stat` being uncatchable
54+
55+
## [v0.10.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.10.0) - 2015-12-18
56+
57+
- Add functions for accessing the filesystem using Node.js streams (#13, #26)
58+
59+
## [v0.9.2](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.9.2) - 2015-12-02
60+
61+
- Fixed warnings (@thimoteus)
62+
63+
## [v0.9.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.9.1) - 2015-11-13
64+
65+
- Add Show and Eq instances for FileFlags
66+
- Improved documentation
67+
68+
## [v0.9.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.9.0) - 2015-11-12
69+
70+
- Added functions to `Node.FS.Async` for dealing with file descriptors asynchronously. (@timbod7, #21)
71+
- Change the `Show` instances for `SymlinkType` to obey the informal `Show` law of getting executable PureScript code out.
72+
- Added a new function `symlinkTypeToNode` for representing a `SymlinkType` as a `String` for use with Node.js APIs (this was previously the `Show` instance).
73+
- ~~Added a `Show` instance for `FileFlags`.~~ (this is in v0.9.1 because @hdgarrood forgot to do this)
74+
- Added a `fileFlagsToNode` function for representing a `FileFlags` value as a `String` for use with Node.js APIs.
75+
- The `FileDescriptor` and `FileFlags` types, and all relevant type synonyms, have been moved from `Node.FS.Sync` to `Node.FS`.
76+
- Update to version ^0.2.0 of `purescript-node-buffer`
77+
- Use `Int` instead of `Number` where appropriate in the following functions:
78+
- `chown`
79+
- `truncate`
80+
- `utimes`
81+
- All warnings have been fixed. (@timbod7)
82+
83+
## [v0.8.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.8.1) - 2015-08-14
84+
85+
- Updated dependencies
86+
87+
## [v0.8.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.8.0) - 2015-08-14
88+
89+
- Updated dependencies
90+
91+
## [v0.7.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.7.1) - 2015-07-06
92+
93+
Fix type of `Async.exists`.
94+
95+
## [v0.6.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.6.0) - 2015-05-24
96+
97+
- Use a proper type for permissions (@felixSchl)
98+
99+
## [v0.5.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.5.0) - 2015-04-07
100+
101+
- Update dependencies
102+
103+
## [v0.4.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.4.0) - 2015-02-21
104+
105+
**This release requires PureScript v0.6.8 or later**
106+
- Updated dependencies
107+
108+
## [v0.3.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.3.0) - 2015-01-29
109+
110+
- Updated to use latest `purescript-datetime`
111+
112+
## [v0.2.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.2.1) - 2015-01-14
113+
114+
- Added file descriptor features (@dysinger)
115+
116+
## [v0.2.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.2.0) - 2015-01-10
117+
118+
- Update `purescript-foreign` dependency (@garyb)
119+
120+
## [v0.1.3](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.1.3) - 2014-11-18
121+
122+
- Fix duplicate labels rows (@paf31)
123+
124+
## [v0.1.2](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.1.2) - 2014-10-14
125+
126+
- Fixed dependency versions (@jdegoes)
127+
128+
## [v0.1.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.1.1) - 2014-09-10
129+
130+
- Add `exists` (@joneshf)
131+
- Actions in `Async` no longer evaluate too early (@garyb / @paf31)
132+
133+
## [v0.1.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.1.0) - 2014-08-11
134+
135+
Initial semver release.
136+

0 commit comments

Comments
 (0)