Skip to content

Commit

Permalink
Merge pull request #3 from TheoPierne/Release-v1.0.3
Browse files Browse the repository at this point in the history
Bump nodejs version
  • Loading branch information
TheoPierne authored Jul 18, 2024
2 parents b048c1c + 4a040a0 commit fe54a9d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# 1.0.3
## Fix
- Bumped minimal NodeJs required version to v16. `require('node:events')` doesn't exist before NodeJs v16
## Docs
- Bumped minimal NodeJs required version to v16 in the readme
# 1.0.2
## Types:
- Fixed types declaration
# 1.0.1
## Bug fixes:
- Fixed types file specification in package.json
# 1.0.0

- Initial version
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A simple and lightweight implementation of `threading.Event` in Node.js

## Installation

**Node.js 15.0.0 or newer is required.**
**Node.js v16.0.0 or newer is required.**

```sh
npm install node-threading-event
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": "node-threading-event",
"version": "1.0.2",
"version": "1.0.3",
"description": "An implementation of the threading.Event Python package",
"main": "src/index.js",
"types": "index.d.ts",
Expand All @@ -19,6 +19,6 @@
"url": "https://github.com/TheoPierne/node-threading-event/issues"
},
"engines": {
"node": ">=15.0.0"
"node": ">=16.0.0"
}
}

0 comments on commit fe54a9d

Please sign in to comment.