From 36b9f1f448744ee61192fcdc7f31cc0ba90cc5b3 Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 10 Jun 2020 17:38:23 -0400 Subject: [PATCH 1/8] Docs: Introduce changelog [Fixes #677] --- CHANGELOG.md | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..cb38283f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,53 @@ +# Changelog + +Notable changes to this project will be 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). + +In SemVer, changes to dependencies (e.g. dropping EoL rubies) +are [not necessarily considered breaking][1]. + +## Unreleased + +### Breaking Changes + +- None + +### Added + +- None + +### Fixed + +- None + +## 3.0.0 - 2020-06-10 + +### Breaking Changes + +- None + +### Added + +- Cucumber 4 support (#762) + +### Fixed + +- Fix a bundler deprecation when running specs (#761) +- remove name override logic that never worked (#758) + +### Dependencies + +- Drop ruby 2.3 support (#760) +- Drop ruby 2.2 support (#759) + +## 2.0.0 - 2015-11-19 + +No docs yet. Contributions welcome! + +## 1.0.0 - 2014-06-07 + +No docs yet. Contributions welcome! + +[1] https://semver.org/#what-should-i-do-if-i-update-my-own-dependencies-without-changing-the-public-api From e80e434fecf98cb0461b56defff7ae63fe6c4124 Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 10 Jun 2020 17:42:27 -0400 Subject: [PATCH 2/8] Docs: Introduce PR template The addition of a PR template was requested in https://github.com/grosser/parallel_tests/issues/677 Here, I'm copying the one we use at authlogic, as a starting point. Of course, we can customize it to the needs of parallel_tests. --- .github/PULL_REQUEST_TEMPLATE.md | 14 ++++++++++++++ 1 file changed, 14 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 00000000..a1e22eb4 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,14 @@ +Thank you for your contribution! + +Check the following boxes: + +- [ ] Wrote [good commit messages][1]. +- [ ] Feature branch is up-to-date with `master` (if not - rebase it). +- [ ] Squashed related commits together. +- [ ] Added tests. +- [ ] Added an entry to the [Changelog](../blob/master/CHANGELOG.md) if the new + code introduces user-observable changes. +- [ ] The PR relates to *only* one subject with a clear title + and description in grammatically correct, complete sentences. + +[1]: http://chris.beams.io/posts/git-commit/ From ab7dadb96a8d3099c212758d85e4645c373e6f8f Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 10 Jun 2020 19:41:22 -0400 Subject: [PATCH 3/8] Update CHANGELOG.md Co-authored-by: Michael Grosser --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb38283f..b4827262 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,7 @@ are [not necessarily considered breaking][1]. ### Breaking Changes -- None +- Cucumber 3 support removed (#762) ### Added From bac5f0972a92e8ed46ea608d5e562c0b10c1c710 Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 10 Jun 2020 19:41:35 -0400 Subject: [PATCH 4/8] Update CHANGELOG.md Co-authored-by: Michael Grosser --- CHANGELOG.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4827262..63e16b21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,11 +42,7 @@ are [not necessarily considered breaking][1]. - Drop ruby 2.3 support (#760) - Drop ruby 2.2 support (#759) -## 2.0.0 - 2015-11-19 - -No docs yet. Contributions welcome! - -## 1.0.0 - 2014-06-07 +## Previous versions No docs yet. Contributions welcome! From af36a49f8233055f7fd67369dbc9a01cded25895 Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 10 Jun 2020 19:42:34 -0400 Subject: [PATCH 5/8] Update .github/PULL_REQUEST_TEMPLATE.md Co-authored-by: Michael Grosser --- .github/PULL_REQUEST_TEMPLATE.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a1e22eb4..0d999a48 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,14 +1,9 @@ Thank you for your contribution! -Check the following boxes: - -- [ ] Wrote [good commit messages][1]. +## Checklist - [ ] Feature branch is up-to-date with `master` (if not - rebase it). -- [ ] Squashed related commits together. - [ ] Added tests. - [ ] Added an entry to the [Changelog](../blob/master/CHANGELOG.md) if the new code introduces user-observable changes. -- [ ] The PR relates to *only* one subject with a clear title - and description in grammatically correct, complete sentences. [1]: http://chris.beams.io/posts/git-commit/ From 540a25175fbc90d17f240a2a7a34c9fa9e69d2ad Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 10 Jun 2020 19:43:05 -0400 Subject: [PATCH 6/8] Update CHANGELOG.md Co-authored-by: Michael Grosser --- CHANGELOG.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63e16b21..a565ca67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,5 @@ # Changelog -Notable changes to this project will be 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). - -In SemVer, changes to dependencies (e.g. dropping EoL rubies) -are [not necessarily considered breaking][1]. - ## Unreleased ### Breaking Changes From 86cc99c151773a62d907a152a67802385328ca98 Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 10 Jun 2020 19:53:44 -0400 Subject: [PATCH 7/8] Update .github/PULL_REQUEST_TEMPLATE.md Co-authored-by: Michael Grosser --- .github/PULL_REQUEST_TEMPLATE.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0d999a48..32fc2137 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -5,5 +5,3 @@ Thank you for your contribution! - [ ] Added tests. - [ ] Added an entry to the [Changelog](../blob/master/CHANGELOG.md) if the new code introduces user-observable changes. - -[1]: http://chris.beams.io/posts/git-commit/ From d333142887a5b8f8d8bb174fb1021da414d55f2a Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Wed, 10 Jun 2020 19:53:55 -0400 Subject: [PATCH 8/8] Update CHANGELOG.md Co-authored-by: Michael Grosser --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a565ca67..b1be18a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,5 +37,3 @@ ## Previous versions No docs yet. Contributions welcome! - -[1] https://semver.org/#what-should-i-do-if-i-update-my-own-dependencies-without-changing-the-public-api