diff --git a/CHANGELOG.md b/CHANGELOG.md index 298c45a..41a45cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.9.0 - Sep 29, 2018 +- [Feature] Annotations will now be added / remove in real time without needing to save. +- [Hotfix] Fixed CI breaking +- [Hotfix] Rest params with a space between the ... operator and the param name now annotated + ## 0.8.4 - Sep 15, 2018 - [Bug] Continued working on cleaning up parameter splitting algorithm. Now doesn't break with functions - [Feature] Wrote unit tests for splitToParamList function diff --git a/package-lock.json b/package-lock.json index 54beb91..60bef68 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-js-annotations", - "version": "0.8.4", + "version": "0.9.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1232,7 +1232,7 @@ }, "is-builtin-module": { "version": "1.0.0", - "resolved": "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", "dev": true, "requires": { diff --git a/package.json b/package.json index a9bd0da..c0ec440 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-js-annotations", "displayName": "JS Parameter Annotations", "description": "Annotations for parameters in your JS / TS Files to mimic named parameters", - "version": "0.8.4", + "version": "0.9.0", "publisher": "lannonbr", "engines": { "vscode": "^1.25.0"