Skip to content

Generate changelog and add PR template #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
**Description of the change**

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.

---

**Checklist:**

- [ ] Added the change to the changelog's "Unreleased" section with a reference to this PR (e.g. "- Made a change (#0000)")
- [ ] Linked any existing issues or proposals that this pull request should close
- [ ] Updated or added relevant documentation
- [ ] Added a test for the contribution (if applicable)
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: purescript-contrib/setup-purescript@main
with:
purescript: "0.14.0-rc3"
purescript: "0.14.0-rc5"

- uses: actions/setup-node@v1
with:
Expand Down
136 changes: 136 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
# Changelog

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).

## [Unreleased]

Breaking changes:

New features:

Bugfixes:

Other improvements:

## [v5.0.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v5.0.1) - 2019-07-24

Relax upper bound on `node-buffer`

## [v5.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v5.0.0) - 2018-05-29

Updates for 0.12

## [v4.0.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v4.0.1) - 2018-03-05

- Raised upper bounds on `purescript-js-date` dependency (@justinwoo)

## [v4.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v4.0.0) - 2017-04-04

Updates for 0.11 (@anilanar)

## [v3.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v3.0.0) - 2016-10-21

- Updated dependencies

## [v2.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v2.0.0) - 2016-07-31

- Updated dependencies

## [v1.0.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v1.0.0) - 2016-06-11

Update for 1.0 core libraries and PureScript 0.9.

## [v0.11.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.11.0) - 2016-03-31

Bump dependencies (`purescript-node-streams` → ~0.4.0).

## [v0.10.2](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.10.2) - 2016-03-31

Update README

## [v0.10.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.10.1) - 2016-03-05

- Fix exceptions thrown by `Node.FS.Sync.stat` being uncatchable

## [v0.10.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.10.0) - 2015-12-18

- Add functions for accessing the filesystem using Node.js streams (#13, #26)

## [v0.9.2](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.9.2) - 2015-12-02

- Fixed warnings (@thimoteus)

## [v0.9.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.9.1) - 2015-11-13

- Add Show and Eq instances for FileFlags
- Improved documentation

## [v0.9.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.9.0) - 2015-11-12

- Added functions to `Node.FS.Async` for dealing with file descriptors asynchronously. (@timbod7, #21)
- Change the `Show` instances for `SymlinkType` to obey the informal `Show` law of getting executable PureScript code out.
- Added a new function `symlinkTypeToNode` for representing a `SymlinkType` as a `String` for use with Node.js APIs (this was previously the `Show` instance).
- ~~Added a `Show` instance for `FileFlags`.~~ (this is in v0.9.1 because @hdgarrood forgot to do this)
- Added a `fileFlagsToNode` function for representing a `FileFlags` value as a `String` for use with Node.js APIs.
- The `FileDescriptor` and `FileFlags` types, and all relevant type synonyms, have been moved from `Node.FS.Sync` to `Node.FS`.
- Update to version ^0.2.0 of `purescript-node-buffer`
- Use `Int` instead of `Number` where appropriate in the following functions:
- `chown`
- `truncate`
- `utimes`
- All warnings have been fixed. (@timbod7)

## [v0.8.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.8.1) - 2015-08-14

- Updated dependencies

## [v0.8.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.8.0) - 2015-08-14

- Updated dependencies

## [v0.7.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.7.1) - 2015-07-06

Fix type of `Async.exists`.

## [v0.6.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.6.0) - 2015-05-24

- Use a proper type for permissions (@felixSchl)

## [v0.5.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.5.0) - 2015-04-07

- Update dependencies

## [v0.4.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.4.0) - 2015-02-21

**This release requires PureScript v0.6.8 or later**
- Updated dependencies

## [v0.3.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.3.0) - 2015-01-29

- Updated to use latest `purescript-datetime`

## [v0.2.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.2.1) - 2015-01-14

- Added file descriptor features (@dysinger)

## [v0.2.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.2.0) - 2015-01-10

- Update `purescript-foreign` dependency (@garyb)

## [v0.1.3](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.1.3) - 2014-11-18

- Fix duplicate labels rows (@paf31)

## [v0.1.2](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.1.2) - 2014-10-14

- Fixed dependency versions (@jdegoes)

## [v0.1.1](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.1.1) - 2014-09-10

- Add `exists` (@joneshf)
- Actions in `Async` no longer evaluate too early (@garyb / @paf31)

## [v0.1.0](https://github.com/purescript-node/purescript-node-fs/releases/tag/v0.1.0) - 2014-08-11

Initial semver release.