diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dba3e2e7..2d438b594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Reactist follows [semantic versioning](https://semver.org/) and doesn't introduce breaking changes (API-wise) in minor or patch releases. However, the appearance of a component might change in a minor or patch release so keep an eye on redesigns and make sure your app still looks and feels like you expect it. +# v22.1.0 + +- [Build] Add support for Node v20 and npm v10 + # v22.0.0 - [BREAKING] Remove `DeprecatedModal`. diff --git a/package-lock.json b/package-lock.json index 95739362f..21f46ac7a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@doist/reactist", - "version": "22.0.0", + "version": "22.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@doist/reactist", - "version": "22.0.0", + "version": "22.1.0", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -110,8 +110,8 @@ "webpack": "^4.43.0" }, "engines": { - "node": "^16.0.0 || ^18.0.0", - "npm": "^8.3.0 || ^9.0.0" + "node": "^16.0.0 || ^18.0.0 || ^20.0.0", + "npm": "^8.3.0 || ^9.0.0 || ^10.0.0" }, "peerDependencies": { "classnames": "^2.2.5", diff --git a/package.json b/package.json index 933c7ed66..183dbb795 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "email": "henning@doist.com", "url": "http://doist.com" }, - "version": "22.0.0", + "version": "22.1.0", "license": "MIT", "homepage": "https://github.com/Doist/reactist#readme", "repository": { @@ -28,8 +28,8 @@ "styles" ], "engines": { - "node": "^16.0.0 || ^18.0.0", - "npm": "^8.3.0 || ^9.0.0" + "node": "^16.0.0 || ^18.0.0 || ^20.0.0", + "npm": "^8.3.0 || ^9.0.0 || ^10.0.0" }, "scripts": { "postinstall": "patch-package",