diff --git a/CHANGELOG.md b/CHANGELOG.md index f9f35ce057c..9cb4bbf64a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Rome changelog +## 10.0.1 + +### CLI + +- Respect the formatter / linter `enabled` flag from configuration ([#3591](https://github.com/rome/tools/issues/3591)) +- Correctly account for diff diagnostics in the printed diagnostics count ([#3595](https://github.com/rome/tools/issues/3595)) + +### Formatter + +- Do not insert a trailing comma in import expressions ([#3600](https://github.com/rome/tools/issues/3600)) + +### Linter + +- Fixed false positives in `noUselessFragments`, `noArrayIndexKey`, `noChildrenProp`, `noUselessFragments`, `noVoidElementsWithChildren`, `noDangerouslySetInnerHtml`, `noDangerouslySetInnerHtmlWithChildren`, `useValidAnchor`, `noRenderReturnValue`, `noUnusedVariables` and `useKeyWithClickEvents` +([#3592](https://github.com/rome/tools/pull/3592), [#3619](https://github.com/rome/tools/pull/3619), [#3599](https://github.com/rome/tools/pull/3599), [#3626](https://github.com/rome/tools/pull/3626), [#3620](https://github.com/rome/tools/pull/3620) & [#3644](https://github.com/rome/tools/pull/3644)) + +### Editors + +- Display the version of the language server in the status bar ([#3616](https://github.com/rome/tools/issues/3616)) + ## 10.0.0 ### CLI diff --git a/editors/vscode/package-lock.json b/editors/vscode/package-lock.json index 418eacec030..8176c5713f8 100644 --- a/editors/vscode/package-lock.json +++ b/editors/vscode/package-lock.json @@ -1,12 +1,12 @@ { "name": "rome", - "version": "0.18.0", + "version": "0.18.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rome", - "version": "0.18.0", + "version": "0.18.1", "license": "MIT", "devDependencies": { "@types/node": "^18.0.0", @@ -3158,4 +3158,4 @@ } } } -} +} \ No newline at end of file diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 7d4b04de979..da010ee8e9f 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -3,7 +3,7 @@ "publisher": "rome", "displayName": "Rome", "description": "Rome LSP VS Code Extension", - "version": "0.18.0", + "version": "0.18.1", "icon": "icon.png", "activationEvents": [ "onLanguage:javascript", @@ -134,4 +134,4 @@ "esbuild": "^0.14.47", "vscode-languageclient": "^8.0.2" } -} +} \ No newline at end of file diff --git a/npm/js-api/package.json b/npm/js-api/package.json index 28b29dd2d15..121f569f8d5 100644 --- a/npm/js-api/package.json +++ b/npm/js-api/package.json @@ -1,6 +1,6 @@ { "name": "@rometools/js-api", - "version": "0.1.0", + "version": "0.1.1", "description": "JavaScript APIs for the Rome package", "scripts": { "tsc": "tsc --noEmit", @@ -55,4 +55,4 @@ "optional": true } } -} +} \ No newline at end of file diff --git a/npm/rome/package.json b/npm/rome/package.json index 59690d12064..9335cc07d67 100644 --- a/npm/rome/package.json +++ b/npm/rome/package.json @@ -1,6 +1,6 @@ { "name": "rome", - "version": "10.0.0", + "version": "10.0.1", "bin": "bin/rome", "scripts": { "postinstall": "node scripts/postinstall.js"