Skip to content

Commit 2db68ca

Browse files
committed
prepare 4.0.2 release
1 parent 69e1295 commit 2db68ca

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [12.x, 14.x, 16.x, 17.x]
15+
node-version: [18.x, 20.x, 21.x, 22.x, 23.x, 24.x]
1616

1717
steps:
1818
- uses: actions/checkout@v2

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ const simplex = {
143143

144144
## Changelog
145145

146+
### 4.0.2
147+
- Tweaked __PURE__ annotations to avoid warnings in rollup.js. Contributed by [Damien Seguin](https://github.com/dmnsgn).
148+
146149
### 4.0.1
147150
- Explicitly defined the return type of `createNoise4D` to be `NoiseFunction4D`.
148151
Contributed by [satelllte](https://github.com/satelllte).

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simplex-noise",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "simplex-noise is a fast simplex noise implementation in Javascript. Works in node and in the browser.",
55
"homepage": "https://github.com/jwagner/simplex-noise.js",
66
"author": "Jonas Wagner <[email protected]> (http://29a.ch/)",
@@ -79,4 +79,4 @@
7979
"prepare": "npm run-script build",
8080
"benchmark": "npm run build && cd perf && ./benchmark.sh"
8181
}
82-
}
82+
}

0 commit comments

Comments
 (0)