Also bump npm versions

This commit is contained in:
ia0 2023-07-08 09:46:53 +02:00 committed by Ferenc Tamás
parent 1d99c225c7
commit b98a1dcac8
3 changed files with 17 additions and 3 deletions

View file

@ -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

View file

@ -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",

View file

@ -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",