Release 1.0.8

This commit is contained in:
Juha Ristolainen 2017-08-28 20:57:08 +02:00
parent 23466f311e
commit 2392b782b7
3 changed files with 119 additions and 111 deletions

View File

@ -6,6 +6,10 @@ All notable changes to the "code-stats-vscode" extension will be documented in t
### Changed
## [1.0.8] - 2017-08-28
### Changed
Merged a PR from nicd to refactor the counting logic.
## [1.0.7] - 2017-05-29

View File

@ -18,6 +18,10 @@ This extension contributes the following settings:
## Release Notes
### 1.0.8
Merged a PR from nicd to refactor the counting logic.
### 1.0.7
Merged a PR from sharpred to count formatting a large JSON-object only as 1 XP.

View File

@ -2,7 +2,7 @@
"name": "code-stats-vscode",
"displayName": "Code::Stats",
"description": "Code::Stats package for Visual Studio Code",
"version": "1.0.7",
"version": "1.0.8",
"publisher": "juha-ristolainen",
"icon": "logo.png",
"repository": {
@ -48,13 +48,13 @@
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"typescript": "^2.1.5",
"vscode": "^1.1.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"axios": "0.15.3"
"axios": "0.16.2"
}
}