Skip to content
This repository was archived by the owner on Jul 29, 2019. It is now read-only.

Commit f8dc00b

Browse files
committed
Fix typoes
1 parent 88d298d commit f8dc00b

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

misc/RELEASE_CHECKLIST_TEMPLATE.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Release Checklist
22

33
## Communication
4-
- [ ] Create a new issue and copy&past this checklist into it (Yeah! First Step done!)
4+
- [ ] Create a new issue and copy&paste this checklist into it (Yeah! First Step done!)
55
- [ ] Talk to the team: Who should make the release?
66
- [ ] Announce a "Code-Freeze". No new Pull-Request until the release is done!
77
- [ ] Checkout if we have MAJOR or MINOR changes. If not we do a PATCH release.
8-
- [ ] The new version will be: `vX.X.Y`
8+
- [ ] The new version will be: `vX.Y.Z`
99
- [ ] Identify open BUGS and add them to the next PATCH milestone (optional).
1010
- [ ] Identify MINOR issues and add them to the next MINOR milestone (optional).
1111

1212
## Update to the newest version
1313
- [ ] Update to the current version: `git checkout develop && git pull`.
14-
- [ ] Create a new release branch. (`git checkout -b vX.X.Y develop`)
14+
- [ ] Create a new release branch. (`git checkout -b vX.Y.Z develop`)
1515

1616
## Build & Test
1717
- [ ] Update the version number of the library in `package.json` (remove the "SNAPSHOT").
@@ -30,7 +30,7 @@
3030
- New Features start with `FEAT #issue:`
3131

3232
## Commit
33-
- [ ] Commit the new version: `git commit -am "Release vX.X.Y"`
33+
- [ ] Commit the new version: `git commit -am "Release vX.Y.Z"`
3434
- [ ] Push the release branch: `git push`
3535
- [ ] Open a Pull-Request for the release-branch to the develop-branch.
3636
- [ ] Wait until somebody of the team looked over your changes and merges the Pull-Request.
@@ -42,17 +42,17 @@ If we would merge the development branch would overwrite this. To solve this we
4242

4343
- [ ] Update: `git fetch && git checkout develop && git pull`
4444
- [ ] Rebase the `master` branch on the `develop` branch: `git checkout master && git rebase develop`
45-
- [ ] Generate new dist files: `npm prune && rm -rf node_modules && npm install && npm run build && npm run test && git commit -am "generated dist files for vX.X.Y"
46-
- [ ] Create a version tag: `git tag "vX.X.Y"`
45+
- [ ] Generate new dist files: `npm prune && rm -rf node_modules && npm install && npm run build && npm run test && git commit -am "generated dist files for vX.Y.Z"
46+
- [ ] Create a version tag: `git tag "vX.Y.Z"`
4747
- [ ] [Remove the protection](https://github.com/almende/vis/settings/branches/master) from `master`.
4848
- [ ] FORCE-Push the branches to github: `git push --force && git push --tag`
4949
- [ ] [Re-Enable branch protection](https://github.com/almende/vis/settings/branches/master) (enable ALL checkboxes) for `master`.
5050
- [ ] Publish with npm: `npm publish` (check [npmjs.com](https://www.npmjs.com/package/vis))
51-
- [ ] Create a [new Release](https://github.com/almende/vis/releases/new) with the tang and the name "vX.X.Y" and copy the data vom [HISTORY.md](../HISTORY.md) into the body.
51+
- [ ] Create a [new Release](https://github.com/almende/vis/releases/new) with the tang and the name "vX.Y.Z" and copy the data vom [HISTORY.md](../HISTORY.md) into the body.
5252

5353

5454
## Test
55-
- [ ] Go to a temp directory (e.g. "vis_vX.X.Y"): `cd .. && mkdir vis_vX.X.Y && cd vis_vX.X.Y`
55+
- [ ] Go to a temp directory (e.g. "vis_vX.Y.Z"): `cd .. && mkdir vis_vX.Y.Z && cd vis_vX.Y.Z`
5656
- [ ] Install the library from npm: `npm init -f && npm install vis`
5757
- [ ] Verify if it installs the just released version, and verify if it works: `cd node_modules/vis/
5858
- [ ] Install the library via bower: `cd ../.. && bower install vis`
@@ -61,15 +61,15 @@ If we would merge the development branch would overwrite this. To solve this we
6161
- [ ] Verify if it installs the just released version, and verify if it works. `cd vis`
6262

6363
## Update website
64-
- [ ] update the gh-pages branch: `git checkout gh-pages && git pull && git checkout -b "gh-pages_vX.X.Y"`
65-
- [ ] Copy the `dist` folder from the `master` branch to the `github-pages` branch in another directory, overwriting existing files: `cp -rf ../vis_vX.X.Y/vis/dist .`
66-
- [ ] Copy the `docs` folder from the `master` branch to the `github-pages` branch in another directory, overwriting existing files: `cp -rf ../vis_vX.X.Y/vis/docs .`
67-
- [ ] Copy the `examples` folder from the `master` branch to the `github-pages` branch in another directory, overwriting existing files: `cp -rf ../vis_vX.X.Y/vis/examples .`
64+
- [ ] update the gh-pages branch: `git checkout gh-pages && git pull && git checkout -b "gh-pages_vX.Y.Z"`
65+
- [ ] Copy the `dist` folder from the `master` branch to the `github-pages` branch in another directory, overwriting existing files: `cp -rf ../vis_vX.Y.Z/vis/dist .`
66+
- [ ] Copy the `docs` folder from the `master` branch to the `github-pages` branch in another directory, overwriting existing files: `cp -rf ../vis_vX.Y.Z/vis/docs .`
67+
- [ ] Copy the `examples` folder from the `master` branch to the `github-pages` branch in another directory, overwriting existing files: `cp -rf ../vis_vX.Y.Z/vis/examples .`
6868
- [ ] Check if there are new or updated examples, and update the gallery screenshots accordingly.
6969
- [ ] Update the library version number in the `index.html` page.
7070
- [ ] Update the CDN links at the download section of index.html AND the CDN link at the top. (search-replace all!!)
71-
- [ ] Commit the changes: `git add -A && git commit -m "updates for vX.X.Y"`
72-
- [ ] Push the changes `git push --set-upstream origin gh-pages_vX.X.Y`
71+
- [ ] Commit the changes: `git add -A && git commit -m "updates for vX.Y.Z"`
72+
- [ ] Push the changes `git push --set-upstream origin gh-pages_vX.Y.Z`
7373

7474
## Prepare next version
7575
- [ ] Switch to the "develop" branch: `git checkout develop`.

0 commit comments

Comments
 (0)