bump-release -> bump-version

This commit is contained in:
Zeke Sikelianos 2016-10-19 11:40:40 +09:00
parent 6b207d65bf
commit 7a73c0189f
2 changed files with 3 additions and 3 deletions

View file

@ -20,10 +20,10 @@ This branch is created as a precaution to prevent any merged PRs from sneaking i
## Bump the version
Run the `bump-release` script, passing `major`, `minor`, or `patch` as an argument:
Run the `bump-version` script, passing `major`, `minor`, or `patch` as an argument:
```sh
npm run bump-release -- patch
npm run bump-version -- patch
```
This will bump the version number in several files. See [this bump commit] for an example.

View file

@ -27,7 +27,7 @@
"scripts": {
"bootstrap": "python ./script/bootstrap.py",
"browserify": "browserify",
"bump-release": "./script/bump-release.py",
"bump-version": "./script/bump-version.py",
"build": "python ./script/build.py -c D",
"clean": "python ./script/clean.py",
"coverage": "npm run instrument-code-coverage && npm test -- --use-instrumented-asar",