Skip to content

Commit

Permalink
v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenisx committed Sep 4, 2022
1 parent d8fae49 commit f77f430
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@ 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).


## [Unreleased]
### Added
## [2.2.1] - 2022-09-05
### Addded
- [#65] Dedupe CSS variables per file.
- Evaluate less used css at-rules like `@supports`
- Evaluate @forward scss import rules
- Add script to dual publish extension to vsce & ovsx
- [#37] add support for evaluating scss mixins
- Support both Changelogs and Release notes.
- Custom script to log changelogs using `git-log` between tags.

### Fixed
- cache invalidations
- examples | remove old example code


## [2.2.0] - 2022-08-28
### Addded
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.2.0",
"version": "2.2.1",
"publisher": "phoenisx",
"license": "MIT",
"homepage": "https://github.com/willofindie/vscode-cssvar",
Expand Down
10 changes: 5 additions & 5 deletions src/scripts/create-changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ process.stdin.on("end", function () {
}

if (/feat:/.test(msg)) {
changelogs.feature.push(msg.split("feat:")[1]);
changelogs.feature.push(msg.split("feat:").join(" "));
} else if (/fix:/.test(msg)) {
changelogs.fix.push(msg.split("fix:")[1]);
changelogs.fix.push(msg.split("fix:").join(" "));
} else if (/chore:/.test(msg)) {
changelogs.chore.push(msg.split("chore:")[1]);
changelogs.chore.push(msg.split("chore:").join(" "));
} else if (/refactor:/.test(msg)) {
changelogs.refactor.push(msg.split("refactor:")[1]);
changelogs.refactor.push(msg.split("refactor:").join(" "));
} else if (/doc:/.test(msg)) {
changelogs.doc.push(msg.split("doc:")[1]);
changelogs.doc.push(msg.split("doc:").join(" "));
} else {
// Push everything else to `feature`, to track the commits and remove them later.
changelogs.feature.push(msg);
Expand Down

0 comments on commit f77f430

Please sign in to comment.