* Bump version to 0.13.0

* Update changelog for 0.13.0
This commit is contained in:
Yan Zhang 2019-01-03 12:46:57 +08:00 коммит произвёл GitHub
Родитель 29c3f4e6ca
Коммит 9ea88a02fa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 16 добавлений и 9 удалений

Просмотреть файл

@ -1,6 +1,7 @@
# Change Log
All notable changes to the "vscode-maven" extension will be documented in this file.
- [Change Log](#change-log)
- [0.13.0](#0130)
- [0.12.1](#0121)
- [0.12.0](#0120)
- [0.11.3](#0113)
@ -19,6 +20,12 @@ All notable changes to the "vscode-maven" extension will be documented in this f
- [0.5.0](#050)
- [Early Versions](#early-versions)
## 0.13.0
- Support to switch between hierarchical and flat view of modules. [#193](https://github.com/Microsoft/vscode-maven/issues/193)
- Support to complete dependencies when editing pom.xml file. [#195](https://github.com/Microsoft/vscode-maven/issues/195)
- It is disabled by default, enable it by setting the value of `maven.completion.enabled` to `true`.
- The dependency candidates are from the local Maven repository.
## 0.12.1
- Chinese localization: Add a whitespace between English and Chinese characters. [#184](https://github.com/Microsoft/vscode-maven/issues/184)
- Add a shortcut in Maven explorer to generate projects. [PR#190](https://github.com/Microsoft/vscode-maven/pull/190)

14
package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "vscode-maven",
"version": "0.12.1",
"version": "0.13.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -1146,7 +1146,7 @@
},
"concat-stream": {
"version": "1.6.2",
"resolved": "http://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
"integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
"dev": true,
"requires": {
@ -4058,7 +4058,7 @@
},
"path-browserify": {
"version": "0.0.0",
"resolved": "http://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz",
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz",
"integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=",
"dev": true
},
@ -4807,7 +4807,7 @@
},
"sprintf-js": {
"version": "1.0.3",
"resolved": "http://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
"dev": true
},
@ -4978,7 +4978,7 @@
},
"supports-color": {
"version": "2.0.0",
"resolved": "http://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
"dev": true
},
@ -5617,7 +5617,7 @@
},
"tty-browserify": {
"version": "0.0.0",
"resolved": "http://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
"resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
"integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
"dev": true
},
@ -5979,7 +5979,7 @@
},
"vm-browserify": {
"version": "0.0.4",
"resolved": "http://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz",
"resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz",
"integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=",
"dev": true,
"requires": {

Просмотреть файл

@ -2,7 +2,7 @@
"name": "vscode-maven",
"displayName": "Maven for Java",
"description": "%description%",
"version": "0.12.1",
"version": "0.13.0",
"icon": "resources/logo.png",
"publisher": "vscjava",
"preview": true,
@ -18,7 +18,7 @@
"Maven",
"Java"
],
"homepage": "https://github.com/Microsoft/vscode-maven/blob/0.12.1/README.md",
"homepage": "https://github.com/Microsoft/vscode-maven/blob/0.13.0/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-maven.git"