Skip to content

Commit 5ee1803

Browse files
committed
Bump version
1 parent 7739495 commit 5ee1803

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 1.11.0 (Out 14, 2017)
2+
* Fix error that occurs when you try to get completion and the extension is loading.
3+
* Add limitations to the concurrency in resource-intensive operations.
4+
* Add progress indicator, useful for large projects.
5+
* The `node_modules` will not be ignored. With those changes, it seems that there's no need to ignore it.
6+
17
### 1.10.2 (Out 12, 2017)
28
* Temporary fix to prevent high CPU usage. The `node_modules` will be ignored in the search for CSS class definitions. [Link to the issue containing detailed information.](https://github.com/Microsoft/vscode/issues/35996)
39
* Fix possibility to run the caching process multiple times simultaneously.

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ A Visual Studio Code extension that provides CSS class name completion for the H
2626
## Contributions
2727
You can request new features and/or contribute to the extension development on its [repository on GitHub](https://github.com/Zignd/HTML-CSS-Class-Completion/issues). Look for an issue you're interested in working on, comment on it to let me know you're working on it and submit your pull request! :D
2828

29-
## What's new in version 1.10.2 (Out 12, 2017)
30-
* Temporary fix to prevent high CPU usage. The `node_modules` will be ignored in the search for CSS class definitions. [Link to the issue containing detailed information.](https://github.com/Microsoft/vscode/issues/35996)
31-
* Fix possibility to run the caching process multiple times simultaneously.
29+
## What's new in version 1.11.0 (Out 14, 2017)
30+
* Fix error that occurs when you try to get completion and the extension is loading.
31+
* Add limitations to the concurrency in resource-intensive operations.
32+
* Add progress indicator, useful for large projects.
33+
* The `node_modules` will not be ignored. With those changes, it seems that there's no need to ignore it.
3234

3335
Check out the [change log](https://github.com/zignd/HTML-CSS-Class-Completion/blob/master/CHANGELOG.md) for the current and previous updates.
3436

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "html-css-class-completion",
33
"displayName": "IntelliSense for CSS class names",
44
"description": "Provides CSS class name completion for the HTML class attribute based on the CSS files in your workspace. Also supports React's className attribute.",
5-
"version": "1.10.2",
5+
"version": "1.11.0",
66
"publisher": "Zignd",
77
"engines": {
88
"vscode": "^1.4.0"

0 commit comments

Comments
 (0)