Skip to content

Commit

Permalink
chore: changing node support level to min v18 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn authored Sep 11, 2023
1 parent d755717 commit 69504f4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ npm install sqs-producer
> npm install sqs-producer@2.2.0 --save-dev
> ```
### Node Version
We will only support Node versions that are actively or security supported by the Node team. If you are still using an Node 14, please use a version of this library before the v3.2.1 release, if you are using Node 16, please use a version before the v3.3.0 release.
## Usage
```js
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": "sqs-producer",
"version": "3.2.1",
"version": "3.3.0",
"description": "Enqueues messages onto a given SQS queue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -20,7 +20,7 @@
"clean": "rm -fr dist/*"
},
"engines": {
"node": ">=12.0.0"
"node": ">=18.0.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 69504f4

Please sign in to comment.