Skip to content

Commit

Permalink
Maintenance release. (#40)
Browse files Browse the repository at this point in the history
* Maintenance release.

* Adding node 21 and 22 to CI
  • Loading branch information
manchicken authored Aug 1, 2024
1 parent d6ee026 commit c1a1efc
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x, 21.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## 0.0.6 (2024-08-01)

Minor maintenance release

## 0.0.5 (2023-12-29)

This is a maintenance release.
Expand Down
20 changes: 12 additions & 8 deletions package-lock.json

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

21 changes: 14 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
{
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0"
},
"type": "commonjs",
"name": "@manchicken/promise-regulation",
"description": "This is a simple Node library to help you take a bit more control over your Promises.",
"version": "0.0.5",
"version": "0.0.6",
"main": "index.js",
"scripts": {
"test": "jest"
Expand All @@ -14,11 +11,21 @@
"type": "git",
"url": "git+https://github.com/manchicken/promise-regulation.git"
},
"keywords": ["promise", "regulation", "concurrency", "fault", "tolerance"],
"keywords": [
"promise",
"regulation",
"concurrency",
"fault",
"tolerance"
],
"author": "Mike Stemle <manchicken@manchicken.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/manchicken/promise-regulation/issues"
},
"homepage": "https://github.com/manchicken/promise-regulation#readme"
"homepage": "https://github.com/manchicken/promise-regulation#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0"
}
}

0 comments on commit c1a1efc

Please sign in to comment.