From 9f442d406d2036d235c5582eaf41fd9ee001be87 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 11 Jan 2021 18:58:23 -0800 Subject: [PATCH 1/2] Generate CHANGELOG.md file using notes from previous GH releases --- CHANGELOG.md | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..39640b5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,78 @@ +# 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: + +## [v4.0.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v4.0.1) - 2019-06-08 + +* Relax upper bounds to allow building with 0.13. (@klntsky) + +## [v4.0.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v4.0.0) - 2018-05-29 + +Updates for 0.12 + +## [v3.1.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v3.1.0) - 2017-08-22 + +Add `question` (@dgendill) + +## [v3.0.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v3.0.1) - 2017-08-04 + +Relax the upper bound in `bower.json` on `node-process`, so that this library can be depended on together with version 5.0.0 of `node-process` without any hassle. + +## [v3.0.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v3.0.0) - 2017-04-05 + +Updates for 0.11 compiler + +## [v2.0.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v2.0.0) - 2016-10-22 + +- Updated dependencies + +## [v1.0.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v1.0.0) - 2016-06-13 + +Updates for 0.9.1 compiler (@kika) + +## [v0.4.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.4.1) - 2016-03-07 + +Fix a bug with completers (@Thimoteus) + +## [v0.4.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.4.0) - 2016-02-27 + +- Expose more of the node API (@spicydonuts, #4) + +## [v0.3.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.3.1) - 2015-08-10 + +Add `close` (@aspidites) + +## [v0.3.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.3.0) - 2015-08-05 + +Flip arguments to `setLineHandler` (@aspidites) + +## [v0.2.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.2.0) - 2015-07-14 + +Release for 0.7 compiler. + +## [v0.2.0-rc.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.2.0-rc.1) - 2015-06-12 + +Initial release for the 0.7 compiler release. + +## [v0.1.2](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.1.2) - 2014-10-29 + + + +## [v0.1.1](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.1.1) - 2014-08-27 + + + +## [v0.1.0](https://github.com/purescript-node/purescript-node-readline/releases/tag/v0.1.0) - 2014-06-14 + + + From 2ed90f4c0d3bd08b73743da33062f0d94f4eb663 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 11 Jan 2021 18:58:23 -0800 Subject: [PATCH 2/2] Add pull request template --- .github/PULL_REQUEST_TEMPLATE.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..4435abb --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -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)