1
0
Fork 0
mirror of synced 2024-07-05 15:01:09 -04:00
ultimate-vim/sources_non_forked/nerdtree/.github/PULL_REQUEST_TEMPLATE.md

43 lines
2 KiB
Markdown
Raw Normal View History

2019-07-08 12:44:45 -04:00
### Description of Changes
2020-12-04 16:15:32 -05:00
Closes # <!-- Enter the issue number this PR addresses. If none, remove this line. -->
2019-07-08 12:44:45 -04:00
---
### New Version Info
2020-03-20 11:10:45 -04:00
<<<<<<< HEAD
2019-07-08 12:44:45 -04:00
- [ ] Derive a new version number. Increment the:
- [ ] `MAJOR` version when you make incompatible API changes
- [ ] `MINOR` version when you add functionality in a backwards-compatible manner
- [ ] `PATCH` version when you make backwards-compatible bug fixes
- [ ] Update [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), following this format/example:
```
#### MAJOR.MINOR...
- **.PATCH**: PR Title (Author) [#PR Number](link to PR)
#### 5.1...
- **.1**: Update Changelog and create PR Template (PhilRunninger) [#1007](https://github.com/scrooloose/nerdtree/pull/1007)
- **.0**: Too many changes for one patch...
```
2020-03-20 11:10:45 -04:00
=======
2019-11-16 10:28:42 -05:00
#### Author's Instructions
- [ ] Derive a new `MAJOR.MINOR.PATCH` version number. Increment the:
- `MAJOR` version when you make incompatible API changes
- `MINOR` version when you add functionality in a backwards-compatible manner
- `PATCH` version when you make backwards-compatible bug fixes
2019-08-22 11:36:17 -04:00
- [ ] Update [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), following the established pattern.
2019-11-16 10:28:42 -05:00
#### Collaborator's Instructions
- [ ] Review [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), suggesting a different version number if necessary.
<<<<<<< HEAD
2019-11-16 10:28:42 -05:00
- [ ] After merge, tag the merge commit, e.g. `git tag -a 3.1.4 -m "v3.1.4" && git push origin --tags`
2020-03-20 11:10:45 -04:00
>>>>>>> 27ad0d07862847896f691309a544a206783c94d6
=======
2020-12-04 16:15:32 -05:00
- [ ] After merging, tag the commit using these (Mac-compatible) bash commands:
```bash
git checkout master
git pull
sed -n "$(grep -n -m2 '####' CHANGELOG.md | cut -f1 -d: | sed 'N;s/\n/,/')p" CHANGELOG.md | sed '$d'
git tag -a $(read -p "Tag Name: " tag;echo $tag) -m"$(git show --quiet --pretty=%s)";git push origin --tags
```
>>>>>>> master