Include lastBuild in release process notes.

This commit is contained in:
Braydon Fuller 2015-08-25 14:00:59 -04:00
parent 81b2d2f2a3
commit 35405c9329

View File

@ -32,7 +32,7 @@ Ensure you've followed the instructions in the README.md for building the projec
When publishing to npm, the .gitignore file is used to exclude files from the npm publishing process. Be sure that the bitcore-node directory has only the directories and files that you would like to publish to npm. You might need to run the commands below on each platform that you intend to publish (e.g. Mac and Linux).
To make a release, bump the version of the package.json:
To make a release, bump the `version` and `lastBuild` of the `package.json`:
```bash
git checkout master
@ -44,7 +44,7 @@ npm run upload
npm publish
```
And then update the version of the package.json for development (e.g. "0.3.2-dev"):
And then update the `version` of the `package.json` for development (e.g. "0.3.2-dev"):
```bash
git commit -a -m "Bump development version to <version>"