Skip to content

Commit

Permalink
fix: #18 - add support for node 17 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
regevbr authored Apr 12, 2022
1 parent a0b4fe8 commit c2be90b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 6.x, 8.x, 10.x, 12.x, 14.x, 16.x ]
node-version: [ 6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 17.x ]

steps:

Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## Development
- nothing yet

## [v3.1.2](https://github.com/regevbr/busywait.js/compare/v3.1.1...v3.1.2)
### Fixed
- Support for node 17

## [v3.1.1](https://github.com/regevbr/busywait.js/compare/v3.1.0...v3.1.1)
### Fixed
- Support for node 16


## [v3.1.0](https://github.com/regevbr/busywait.js/compare/v3.0.0...v3.1.0)
### Added
- Added total delay information to the checked function call
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": "busywait",
"version": "3.1.1",
"version": "3.1.2",
"description": "Async busy wait",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -38,7 +38,7 @@
"backoff-strategy"
],
"engines": {
"node": "^6 || ^8 || ^10 || ^12 || ^14 || ^16"
"node": "^6 || ^8 || ^10 || ^12 || ^14 || ^16 || ^17"
},
"files": [
"/dist/*.d.ts",
Expand Down

0 comments on commit c2be90b

Please sign in to comment.