diff --git a/CHANGELOG.md b/CHANGELOG.md index d4cb33372f1..2c434fc1400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # rollup changelog +## 3.21.7 + +_2023-05-13_ + +### Bug Fixes + +- Show correct error on uncaught exceptions in watch mode (#4987) + +### Pull Requests + +- [#4987](https://github.com/rollup/rollup/pull/4987): Properly quit on uncaught exceptions (@lukastaegert) +- [#4988](https://github.com/rollup/rollup/pull/4988): test: add options type for function tests (@TrickyPi) + ## 3.21.6 _2023-05-09_ diff --git a/browser/package.json b/browser/package.json index 5ad6dc25614..62c3921ec78 100644 --- a/browser/package.json +++ b/browser/package.json @@ -1,6 +1,6 @@ { "name": "@rollup/browser", - "version": "3.21.6", + "version": "3.21.7", "description": "Next-generation ES module bundler browser build", "main": "dist/rollup.browser.js", "module": "dist/es/rollup.browser.js", diff --git a/package-lock.json b/package-lock.json index 99ac1a50d2a..5df4d2cf095 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rollup", - "version": "3.21.6", + "version": "3.21.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rollup", - "version": "3.21.6", + "version": "3.21.7", "license": "MIT", "bin": { "rollup": "dist/bin/rollup" diff --git a/package.json b/package.json index af524e50bed..d009c58d32b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "3.21.6", + "version": "3.21.7", "description": "Next-generation ES module bundler", "main": "dist/rollup.js", "module": "dist/es/rollup.js",