From add5da56fa9b4912cf98d1616e10a51d39cd1e7d Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Sat, 30 Jan 2021 20:44:15 +0800 Subject: [PATCH] PULL_REQUEST_TEMPLATE: align definitions of changes with semver --- .github/PULL_REQUEST_TEMPLATE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 3f9055e0..167df146 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -14,8 +14,8 @@ ## Types of changes - + -- [ ] Bug fix (non-breaking change which fixes an issue) -- [ ] New feature (non-breaking change which adds functionality) -- [ ] Breaking change (fix or feature that would cause existing functionality to change) +- [ ] Breaking change (changes that break backward compatibility of public API or CLI - semver MAJOR) +- [ ] New feature (non-breaking change which adds functionality - semver MINOR) +- [ ] Bug fix (non-breaking change which fixes an issue - semver PATCH)