diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ee2b6b..6500ef0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # code-red changelog +## 0.2.4 + +- Fix output for arrow functions where body is an object destructuring assignment ([#70](https://github.com/Rich-Harris/code-red/pull/70)) + ## 0.2.3 - Fix output with comments within parenthesized `return` statement ([#36](https://github.com/Rich-Harris/code-red/issues/36)) diff --git a/package-lock.json b/package-lock.json index 8af2dd4..9259b4c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "code-red", - "version": "0.2.3", + "version": "0.2.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 56f44ca..ab65fc2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "code-red", "description": "code-red", - "version": "0.2.3", + "version": "0.2.4", "repository": "Rich-Harris/code-red", "main": "dist/code-red.cjs", "module": "src/index.js",