diff --git a/CHANGELOG.md b/CHANGELOG.md index e740b8b..5de5995 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 0.0.15 (May 19, 2017) + +* enhancement - Autocomplete order/priority? See [#41](https://github.com/k--kato/vscode-docomment/issues/41). + ## 0.0.14 (February 15, 2017) * bug fix - 3 Attributes bug. See [#34](https://github.com/k--kato/vscode-docomment/issues/34). diff --git a/package.json b/package.json index 0ac939a..9d4304c 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,13 @@ { "name": "docomment", - "version": "0.0.14", + "version": "0.0.15", "publisher": "k--kato", "engines": { - "vscode": "^1.8.0" + "vscode": "^1.12.2" }, "displayName": "C# XML Documentation Comments", "description": "Generate C# XML documentation comments for ///", "categories": [ - "Snippets", "Other" ], "galleryBanner": { @@ -17,12 +16,6 @@ }, "main": "./out/src/extension", "contributes": { - "snippets": [ - { - "language": "csharp", - "path": "./snippets/csharp.json" - } - ], "configuration": { "type": "object", "title": "C# XML Documentation Comments configuration", @@ -45,15 +38,15 @@ "dependencies": { }, "devDependencies": { - "typescript": "^2.1.6", - "vscode": "^1.0.3", - "tslint": "^4.4.2", + "typescript": "^2.3.2", + "vscode": "^1.1.0", + "tslint": "^5.2.0", "istanbul": "^0.4.5", - "coveralls": "^2.11.16", - "mocha": "^3.2.0", - "mocha-lcov-reporter": "^1.2.0", - "@types/node": "^7.0.5", - "@types/mocha": "^2.2.39" + "coveralls": "^2.13.1", + "mocha": "^3.4.1", + "mocha-lcov-reporter": "^1.3.0", + "@types/node": "^7.0.18", + "@types/mocha": "^2.2.41" }, "extensionDependencies": [ ],