Skip to content

Commit bdd032c

Browse files
committed
revert needless change in changelog
1 parent 9e76316 commit bdd032c

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

CHANGELOG.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
### 0.31.0 | 2020-12-08 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.31.0/vspackage)
5656

57-
---
57+
----
5858

5959
#### 🎉 RFC release 🎉
6060

@@ -64,7 +64,7 @@ We have also added a new config file called `vetur.config.js`.
6464
See more: https://vuejs.github.io/vetur/guide/setup.html#advanced
6565
Reference: https://vuejs.github.io/vetur/reference/
6666

67-
---
67+
----
6868

6969
- Fix pug format. #2460
7070
- Fix scss autocompletion. #2522
@@ -79,6 +79,7 @@ Reference: https://vuejs.github.io/vetur/reference/
7979
- Improve docs.
8080
- Support yarn PnP support. Thanks to contribution from [@merceyz](https://github.com/merceyz). #2478.
8181

82+
8283
### 0.30.3 | 2020-11-26 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.30.3/vspackage)
8384

8485
- Fix prettier-eslint and prettier-tslint
@@ -92,24 +93,25 @@ Reference: https://vuejs.github.io/vetur/reference/
9293
- Fix high CPU usage when template tag self closed. Thanks to help from [@Shinigami92](https://github.com/Shinigami92). #2468
9394
- Fix formatting css problem with prettier. #2467
9495

96+
9597
### 0.30.1 | 2020-11-12 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.30.1/vspackage)
9698

9799
- Fix corner case when auto import component failed. Thanks to contribution from [@yoyo930021](https://github.com/yoyo930021). #2461.
98100
- Fix the `template lang='pug'` node will be cleared when formatting the vue file. Thanks to contribution from [@yoyo930021](https://github.com/yoyo930021). #2460.
99101

100-
### 0.30.0 | 2020-11-11 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.30.0/vspackage)
101102

102-
---
103+
### 0.30.0 | 2020-11-11 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.30.0/vspackage)
103104

104-
#### ⚠️ Breaking change: ⚠️
105+
----
105106

107+
#### ⚠️ Breaking change: ⚠️
106108
The `vetur.useWorkspaceDependencies` option affect all runtime dependencies now.
107109
Like `prettier`, `@prettier/plugin-pug`.
108110

109111
In this version, we try to bundle extension and reduce size. (70MB -> 9MB)
110112
But it's a huge change, so please open an issue if you find any problems.
111113

112-
---
114+
----
113115

114116
- 🙌 Fix v-bind modifiers causing TypeScript to not find type-checked template props correctly. Thanks to contribution from [@andrewisaburden](https://github.com/andrewisaburden). #2430.
115117
- 🙌 Fix "File name X differs from already included file name Y only in casing" on Windows. Thanks to contribution from [@rchl](https://github.com/rchl). #2433 and #2444.
@@ -175,7 +177,7 @@ But it's a huge change, so please open an issue if you find any problems.
175177

176178
- Add `foldingRange` support to support dynamic folding ranges such as `#region`. #899.
177179
- Add setting `vetur.validation.interpolation` so interpolation diagnostics and `eslint-plugin-vue` diagnostics can be configed separately. #2131.
178-
- Fix VLS crash for \*.vue files in node_modules. #2006.
180+
- Fix VLS crash for *.vue files in node_modules. #2006.
179181
- Upgrade to TypeScript 4.0.2 and fix symbol outline issue. #1849.
180182
- Improve JSDoc presentation in hover/completion in interpolation mode. #1337.
181183
- Improve JSDoc presentation in hover/completion/signatureHelp. #2193.
@@ -454,15 +456,15 @@ export default {
454456
default: 0
455457
}
456458
},
457-
data() {
459+
data () {
458460
return {
459461
/**
460462
* My msg
461463
*/
462-
msg: 'Vetur get much better completion'
463-
};
464+
msg: 'Vetur get much better completion',
465+
}
464466
}
465-
};
467+
}
466468
</script>
467469
```
468470

@@ -558,7 +560,6 @@ Read updated doc at: https://vuejs.github.io/vetur/formatting.html#formatters.
558560
"vetur.format.options.tabSize": 2
559561
}
560562
```
561-
562563
- Vetur no longer reads settings from `prettier.*`. All settings must be specified in a local configuration file. #982.
563564
- `prettier-eslint` is added as an option for `vetur.format.defaultFormatter.js`. #982.
564565
- Various bug fixes for `prettier-eslint` not reading config correctly. Thanks to contribution form [@Coder-256](https://github.com/Coder-256). #934 and #942.
@@ -659,6 +660,7 @@ Read updated doc at: https://vuejs.github.io/vetur/formatting.html#formatters.
659660
- Upgrade grammar so broken syntax in each region will not affect syntax highlighting outside that specific region. #174.
660661
- Always ignore `end_with_newline` option in js-beautify so the template formats properly. #544.
661662

663+
662664
### 0.11.3 | 2017-11-13 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.11.3/vspackage)
663665

664666
- Hot fix for a bug in formatting `<template>` with js-beautify where it adds `</template>` to the end. #539.
@@ -930,7 +932,6 @@ Shoutout to @HerringtonDarkholme who helped implementing many new features!
930932
- Improve `sass` syntax highlighting based on grammar from [robinbentley/vscode-sass-indented](https://github.com/robinbentley/vscode-sass-indented). #41.
931933

932934
Thanks to [@sandersn](https://github.com/sandersn)'s [PR](https://github.com/octref/vetur/pull/94):
933-
934935
- Preliminary TypeScript support (try `<script lang="ts">`)
935936
- Improved IntelliSense for `js/ts` in Vue SFC.
936937
- Correct Module Resolution (try `npm i lodash @types/lodash` and use lodash in your Vue SFC).

0 commit comments

Comments
 (0)