From 6bfff874f5f0efed6375a9bf27fbd39b3cec6b4e Mon Sep 17 00:00:00 2001 From: Jonas Wagner Date: Fri, 26 Jul 2024 19:02:32 +0200 Subject: [PATCH] prepare 4.0.3 release --- README.md | 3 +++ package.json | 4 ++-- simplex-noise.ts | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4dc4d0b..d75116f 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,9 @@ const simplex = { ## Changelog +### 4.0.3 +- Additional tweaks to __PURE__ annotations to avoid warnings in rollup.js. Contributed by [Damien Seguin](https://github.com/dmnsgn). + ### 4.0.2 - Tweaked __PURE__ annotations to avoid warnings in rollup.js. Contributed by [Damien Seguin](https://github.com/dmnsgn). diff --git a/package.json b/package.json index d6aff79..a075fbb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simplex-noise", - "version": "4.0.2", + "version": "4.0.3", "description": "simplex-noise is a fast simplex noise implementation in Javascript. Works in node and in the browser.", "homepage": "https://github.com/jwagner/simplex-noise.js", "author": "Jonas Wagner (http://29a.ch/)", @@ -80,4 +80,4 @@ "prepare": "npm run-script build", "benchmark": "npm run build && cd perf && ./benchmark.sh" } -} +} \ No newline at end of file diff --git a/simplex-noise.ts b/simplex-noise.ts index 0866d87..188e62a 100644 --- a/simplex-noise.ts +++ b/simplex-noise.ts @@ -6,7 +6,7 @@ Which is based on example code by Stefan Gustavson (stegu@itn.liu.se). With Optimisations by Peter Eastman (peastman@drizzle.stanford.edu). Better rank ordering method by Stefan Gustavson in 2012. - Copyright (c) 2022 Jonas Wagner + Copyright (c) 2024 Jonas Wagner Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal