From 0d46bc07bd826a6d05344797313673072e2af225 Mon Sep 17 00:00:00 2001 From: Yang Chen Date: Sat, 30 Nov 2019 22:13:36 +1100 Subject: [PATCH] Prepare for release 1.0.2 --- CHANGELOG.md | 14 ++++++++++++++ RELEASING.md | 2 ++ 2 files changed, 16 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..2875d780 --- /dev/null +++ b/CHANGELOG.md @@ -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. diff --git a/RELEASING.md b/RELEASING.md index 39de6f47..a7bcaeff 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -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`).