Prepare for release 1.0.2

This commit is contained in:
Yang Chen
2019-11-30 22:13:36 +11:00
parent 0fde7031bc
commit 0d46bc07bd
2 changed files with 16 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Change Log
## v1.0.2
* Increased emulator boot timeout to **5 mins**.
## v1.0.1
* Fixed docs.
* Minor internal changes.
## v1.0.0
Initial release.
+2
View File
@@ -5,6 +5,7 @@ Refer to the [recommendeations for versioning and releasing actions](https://git
## New major release
- From `master` branch, run `npm run build && npm test --clean && npm run lint` to make sure `lib/*.js` are up-to-date.
- Update `CHANGELOG.md`, push change with "Prepare for release X.Y.Z." (where X.Y.Z is the new version).
- Create a new branch e.g. `release/v1`, comment out `node_modules/` in `.gitignore`, commit the change (do not commit yet `node_modules`).
- Run `npm prune --production`.
- Now commit the changes (the pruned `node_modules`).
@@ -17,6 +18,7 @@ Refer to the [recommendeations for versioning and releasing actions](https://git
## New minor / patch release
- From `master` branch, run `npm run build && npm test --clean && npm run lint` to make sure `lib/*.js` are up-to-date.
- Update `CHANGELOG.md`, push change with "Prepare for release X.Y.Z." (where X.Y.Z is the new version).
- Merge from `master` into the release branch e.g. `release/v1`.
- Run `npm prune --production`.
- Commit merged changes (and the pruned `node_modules`).