Skip to content

Commit

Permalink
Publish v3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Mar 14, 2019
1 parent 9793e3e commit 52a67c7
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 14 deletions.
3 changes: 2 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
https://github.com/josdejong/workerpool


## not yet published, version 3.1.2
## 2019-03-12, version 3.1.2

- Improved error message when a node.js worker unexpectedly exits (see #58).
Thanks @stefanpenner.

- Allocate debug ports safely, this fixes an issue cause workers to exit
unexpectedly if more then one worker pool is active, and the process is
started with a debugger (`node debug` or `node --inspect`).
Thanks @stefanpenner.


## 2019-02-25, version 3.1.1
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,19 @@ To see the coverage results, open the generated report in your browser:
./coverage/lcov-report/index.html


## Publish

- Describe changes in HISTORY.md
- Update version in package.json, run `npm install` to update it in `package-lock.json` too.
- Push to github
- Deploy to npm via `npm publish`
- Add a git tag with the version number like:
```
git tag v1.2.3
git push --tags
```


## License

Copyright (C) 2014-2019 Jos de Jong <[email protected]>
Expand Down
43 changes: 31 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workerpool",
"license": "Apache-2.0",
"version": "3.1.1",
"version": "3.1.2",
"description": "Offload tasks to a pool of workers on node.js and in the browser",
"homepage": "https://github.com/josdejong/workerpool",
"author": "Jos de Jong <[email protected]> (https://github.com/josdejong)",
Expand Down

0 comments on commit 52a67c7

Please sign in to comment.