diff --git a/CHANGELOG.md b/CHANGELOG.md index ce0c36f..a000d0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 892d82b..247a5d1 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/scripts/create-changelog.js b/src/scripts/create-changelog.js index 94f0cca..34bb541 100755 --- a/src/scripts/create-changelog.js +++ b/src/scripts/create-changelog.js @@ -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) {