Skip to content

Commit

Permalink
Bump 5.0.0-beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
reconbot committed Jul 5, 2017
1 parent fc483b2 commit 14bab11
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .docs/README.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ For a full breakdown of why we made Node-Serialport, please read [NodeBots - The

You're reading the README for Node-Serialport's master branch. You probably want to see the README for our most recent release. See our [changelog](changelog.md) for what's new, and our [upgrade guide](UPGRADE_GUIDE.md) for a walk-through on differences between major versions.

- [`serialport@5.0.0-beta5` docs](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/5.0.0-beta5/README.md) the latest `5.x` release.
- [`serialport@5.0.0-beta6` docs](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/5.0.0-beta6/README.md) the latest `5.x` release.
- [`serialport@4.0.7` docs](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/4.0.7/README.md) the latest `4.x` release.
- [`serialport@3.1.2` docs](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/3.1.2/README.md) the last `3.x` release.

Expand Down
4 changes: 2 additions & 2 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ This can be checked in the .travis.yml file and appveyor.yml file. Within these
4. Update the `.docs/README.hbs` to reference this current version and to previous major version docs then regenerate docs `npm run docs`.
5. Commit then generate new tags based on package.json version number with `git tag 5.0.0 -a` and include the change log in the tag's annotation.
6. Push tags to Github with `git push --tags`
7. `rm -rf node_modules build && npm install`
7. `rm -rf package-lock.json node_modules build && npm install`
8. Publish to npm after builds finish. Builds can take half an hour and occasionally fail for seemingly no reason. Restart any failures in the travis or appeveyor ui. While you wait, remove the content of the Github release message so the tag's text shows. When the entire matrix succeeds and all binaries exist run `npm publish`.
9. Kick off the build matrix for either the master or beta branch on [serialport-test-pilot](https://travis-ci.org/j5js/serialport-test-pilot). It will install serialport from npm on a wide range of systems.

Differences for beta release
* Tag like: `git tag 5.0.0-beta5 -a` and include the change log in the tag's annotation.
* Tag like: `git tag 5.0.0-beta6 -a` and include the change log in the tag's annotation.
* Publish with `npm publish --tag beta`

## Config Travis, AppVeyor and Github to generate all of the binaries.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ For a full breakdown of why we made Node-Serialport, please read [NodeBots - The

You're reading the README for Node-Serialport's master branch. You probably want to see the README for our most recent release. See our [changelog](changelog.md) for what's new, and our [upgrade guide](UPGRADE_GUIDE.md) for a walk-through on differences between major versions.

- [`serialport@5.0.0-beta5` docs](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/5.0.0-beta5/README.md) the latest `5.x` release.
- [`serialport@5.0.0-beta6` docs](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/5.0.0-beta6/README.md) the latest `5.x` release.
- [`serialport@4.0.7` docs](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/4.0.7/README.md) the latest `4.x` release.
- [`serialport@3.1.2` docs](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/3.1.2/README.md) the last `3.x` release.

Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 5.0.0-beta6
-------------
- [all] The `disconnect` event now more reliable. Will be emitted as an error if there are no listeners.
- [all] `SerialPort.list` now returns a usable promise if a callback is not provided @MikeKovarik
- [unix] New read/write subsystem. Write CPU dropped from 100% to 0-2%. @reconbot (Thanks to @indutny for getting me unstuck many times!)

Version 5.0.0-beta5
-------------
- [docs] An overhaul of the format and language in our docs thanks to @LappleApple
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "serialport",
"version": "5.0.0-beta5",
"version": "5.0.0-beta6",
"description": "Node.js package to access serial ports. Welcome your robotic JavaScript overlords. Better yet, program them!",
"author": {
"name": "Chris Williams",
Expand All @@ -10,7 +10,7 @@
"binary": {
"module_name": "serialport",
"module_path": "build/{configuration}/",
"host": "https://github.com/EmergingTechnologyAdvisors/node-serialport/releases/download/5.0.0-beta5"
"host": "https://github.com/EmergingTechnologyAdvisors/node-serialport/releases/download/5.0.0-beta6"
},
"main": "lib",
"repository": {
Expand Down

0 comments on commit 14bab11

Please sign in to comment.