diff --git a/editors/vscode/CHANGELOG.md b/editors/vscode/CHANGELOG.md index 82bb498a0..821436712 100644 --- a/editors/vscode/CHANGELOG.md +++ b/editors/vscode/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 0.19.1 + +### Features + +- Added `align_single_comments` formatter setting ([#409](https://github.com/tamasfe/taplo/pull/409)) + +### Fixes + +- Fixed incorrectly modifying file extensions in catalog rules ([#426](https://github.com/tamasfe/taplo/pull/426)) +- Fixed non-deterministic `--diff` output ([#424](https://github.com/tamasfe/taplo/pull/424)) +- Fixed incorrect path handling of `--stdin-filepath` ([#418](https://github.com/tamasfe/taplo/pull/418)) +- Fixed incorrect path handling in LSP rule matching ([#378](https://github.com/tamasfe/taplo/pull/378)) +- Fixed incorrect support of LSP shutdown requests ([#354](https://github.com/tamasfe/taplo/pull/354)) + ## 0.19.0 ### Features diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 8c8e5efa3..cfaaadb7f 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -2,7 +2,7 @@ "name": "even-better-toml", "displayName": "Even Better TOML", "description": "Fully-featured TOML support", - "version": "0.19.0", + "version": "0.19.1", "autoTag": { "enabled": true }, @@ -404,7 +404,7 @@ "build": "rm -rf dist && yarn build:syntax && yarn build:node && yarn build:browser-extension && yarn build:browser-server" }, "dependencies": { - "@taplo/lsp": "0.6.0", + "@taplo/lsp": "0.6.1", "deep-equal": "^2.0.5", "encoding": "^0.1.13", "fast-glob": "^3.2.11", diff --git a/js/lsp/package.json b/js/lsp/package.json index 6c58e4b5f..d8ac0a313 100644 --- a/js/lsp/package.json +++ b/js/lsp/package.json @@ -1,6 +1,6 @@ { "name": "@taplo/lsp", - "version": "0.6.0", + "version": "0.6.1", "description": "A JavaScript wrapper for the Taplo TOML language server.", "scripts": { "build": "yarn rollup --silent -c rollup.config.js",