diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e120645dff..bbf71d8510a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # rollup changelog +## 3.0.1 + +_2022-10-12_ + +### Bug Fixes + +- Fix installation on Windows (#4662) +- Avoid missing parameters that are only used in a destructuring initializer (#4663) + +### Pull Requests + +- [#4661](https://github.com/rollup/rollup/pull/4661): Enforce type imports (@lukastaegert) +- [#4662](https://github.com/rollup/rollup/pull/4662): fix: missing "node" causes run script error (@c0dedance) +- [#4663](https://github.com/rollup/rollup/pull/4663): Ensure the initializer of a destructuring declaration is always included if the id is included (@lukastaegert) +- [#4664](https://github.com/rollup/rollup/pull/4664): fix: remove lint:js:nofix script redundancy options (@c0dedance) + ## 3.0.0 _2022-10-11_ diff --git a/browser/package.json b/browser/package.json index b2f92d30be8..2c9012e3f46 100644 --- a/browser/package.json +++ b/browser/package.json @@ -1,6 +1,6 @@ { "name": "@rollup/browser", - "version": "3.0.0", + "version": "3.0.1", "description": "Next-generation ES module bundler browser build", "main": "dist/rollup.browser.js", "module": "dist/es/rollup.browser.js", diff --git a/package.json b/package.json index faa6bbf3d42..7a1b8b5c785 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "3.0.0", + "version": "3.0.1", "description": "Next-generation ES module bundler", "main": "dist/rollup.js", "module": "dist/es/rollup.js",