Browse Source

bump-release -> bump-version

Zeke Sikelianos 8 years ago
parent
commit
7a73c0189f
2 changed files with 3 additions and 3 deletions
  1. 2 2
      docs/development/releasing.md
  2. 1 1
      package.json

+ 2 - 2
docs/development/releasing.md

@@ -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.

+ 1 - 1
package.json

@@ -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",