Skip to content

Commit 65f9f3a

Browse files
committed
v2.5.0
- Update Changelogs
1 parent 52ea4c7 commit 65f9f3a

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.5.0](https://github.com/willofindie/vscode-cssvar/compare/v2.4.1...v2.5.0) - 2022-11-06
8+
### Features
9+
- [#72](https://github.com/willofindie/vscode-cssvar/issues/72) Enable all useful language ids to dynamically enable CSS Variable IntelliSense
10+
- Update Readme doc
11+
- Conditionaly enable diagnostics
12+
- Add `cssvar.enable` setting to enable/disable the extension
13+
- [#78](https://github.com/willofindie/vscode-cssvar/issues/78) Add support for `tokencss`
14+
- Adds custom plugin resolver
15+
- Update examples
16+
- Add `config` tests
17+
18+
### Fixes
19+
- [#95](https://github.com/willofindie/vscode-cssvar/issues/95) Handle variable recursive evaluation
20+
- [#58](https://github.com/willofindie/vscode-cssvar/issues/58) Improve config contributions to make it compatible with VSCode's Settings UI.
21+
- Unit Tests
22+
- [#87](https://github.com/willofindie/vscode-cssvar/issues/87) Handle hover errors for undeclared css vars
23+
24+
725
## [2.4.1](https://github.com/willofindie/vscode-cssvar/compare/v2.4.0...v2.4.1) - 2022-10-21
826
### Fixes
927
- Reverts: [#74](https://github.com/willofindie/vscode-cssvar/issues/74) Support for .gitignore

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"typescript"
2121
],
2222
"description": "Intellisense support for CSS Variables",
23-
"version": "2.4.1",
23+
"version": "2.5.0",
2424
"publisher": "phoenisx",
2525
"license": "MIT",
2626
"homepage": "https://github.com/willofindie/vscode-cssvar",

src/scripts/create-changelog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const processCommitMsg = (/** @type {string[]} */ msgTokens) => {
106106
changelogs.feature.forEach(line => console.log(`- ${line}`));
107107
}
108108
if (changelogs.fix.length > 0) {
109-
console.log("### Fixed");
109+
console.log("### Fixes");
110110
changelogs.fix.forEach(line => console.log(`- ${line}`));
111111
}
112112
if (changelogs.doc.length > 0) {

0 commit comments

Comments
 (0)