Skip to content

Commit

Permalink
v2.5.0
Browse files Browse the repository at this point in the history
- Update Changelogs
  • Loading branch information
phoenisx committed Nov 6, 2022
1 parent 52ea4c7 commit 65f9f3a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.5.0](https://github.com/willofindie/vscode-cssvar/compare/v2.4.1...v2.5.0) - 2022-11-06
### Features
- [#72](https://github.com/willofindie/vscode-cssvar/issues/72) Enable all useful language ids to dynamically enable CSS Variable IntelliSense
- Update Readme doc
- Conditionaly enable diagnostics
- Add `cssvar.enable` setting to enable/disable the extension
- [#78](https://github.com/willofindie/vscode-cssvar/issues/78) Add support for `tokencss`
- Adds custom plugin resolver
- Update examples
- Add `config` tests

### Fixes
- [#95](https://github.com/willofindie/vscode-cssvar/issues/95) Handle variable recursive evaluation
- [#58](https://github.com/willofindie/vscode-cssvar/issues/58) Improve config contributions to make it compatible with VSCode's Settings UI.
- Unit Tests
- [#87](https://github.com/willofindie/vscode-cssvar/issues/87) Handle hover errors for undeclared css vars


## [2.4.1](https://github.com/willofindie/vscode-cssvar/compare/v2.4.0...v2.4.1) - 2022-10-21
### Fixes
- Reverts: [#74](https://github.com/willofindie/vscode-cssvar/issues/74) Support for .gitignore
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"typescript"
],
"description": "Intellisense support for CSS Variables",
"version": "2.4.1",
"version": "2.5.0",
"publisher": "phoenisx",
"license": "MIT",
"homepage": "https://github.com/willofindie/vscode-cssvar",
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/create-changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const processCommitMsg = (/** @type {string[]} */ msgTokens) => {
changelogs.feature.forEach(line => console.log(`- ${line}`));
}
if (changelogs.fix.length > 0) {
console.log("### Fixed");
console.log("### Fixes");
changelogs.fix.forEach(line => console.log(`- ${line}`));
}
if (changelogs.doc.length > 0) {
Expand Down

0 comments on commit 65f9f3a

Please sign in to comment.