upversion to 0.22.0 (#509)
* upversion to 0.22.0 Signed-off-by: Yan Zhang <yanzh@microsoft.com> * fix typos Signed-off-by: Yan Zhang <yanzh@microsoft.com>
This commit is contained in:
Родитель
057c6df74c
Коммит
6b898c8388
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,6 +1,19 @@
|
|||
# Change Log
|
||||
All notable changes to the "vscode-maven" extension will be documented in this file.
|
||||
|
||||
## 0.22.0
|
||||
#### Added
|
||||
- Better support for PowerShell. [#494](https://github.com/microsoft/vscode-maven/pull/494)
|
||||
|
||||
#### Changed
|
||||
- Keep the cache file of effective pom for diagnosis. [#319](https://github.com/microsoft/vscode-maven/issues/319#issuecomment-601494862)
|
||||
|
||||
#### Fixed
|
||||
- Fix: mvnw was not identified if .mvn folder doesn't exist. [#504](https://github.com/microsoft/vscode-maven/issues/504)
|
||||
- Fix: notification "Maven executable not found in PATH" pops up for multiple times. [#501](https://github.com/microsoft/vscode-maven/issues/501)
|
||||
- Fix: tilde was not expanded as home directory in unix-like systems. [#507](https://github.com/microsoft/vscode-maven/pull/507)
|
||||
- Fix: Maven output didn't write to the integrated terminal window. [#489](https://github.com/microsoft/vscode-maven/issues/489)
|
||||
|
||||
## 0.21.4
|
||||
#### Fixed
|
||||
- Set custom environment variables in folder level. [#487](https://github.com/microsoft/vscode-maven/issues/487)
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: com.microsoft.java.maven
|
||||
Bundle-SymbolicName: com.microsoft.java.maven.plugin;singleton:=true
|
||||
Bundle-Version: 0.21.4
|
||||
Bundle-Version: 0.22.0
|
||||
Bundle-Activator: com.microsoft.java.maven.PluginActivator
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Import-Package: org.eclipse.jdt.core,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.java.maven</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<version>0.21.4</version>
|
||||
<version>0.22.0</version>
|
||||
</parent>
|
||||
<artifactId>com.microsoft.java.maven.plugin</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<groupId>com.microsoft.java.maven</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<name>${base.name} :: Parent</name>
|
||||
<version>0.21.4</version>
|
||||
<version>0.22.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<base.name>JDTLS Maven Extension</base.name>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vscode-maven",
|
||||
"version": "0.21.4",
|
||||
"version": "0.22.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-maven",
|
||||
"displayName": "Maven for Java",
|
||||
"description": "%description%",
|
||||
"version": "0.21.4",
|
||||
"version": "0.22.0",
|
||||
"icon": "resources/logo.png",
|
||||
"publisher": "vscjava",
|
||||
"preview": true,
|
||||
|
@ -51,7 +51,7 @@
|
|||
"main": "./dist/extension",
|
||||
"contributes": {
|
||||
"javaExtensions": [
|
||||
"./jdtls.ext/com.microsoft.java.maven.plugin/target/com.microsoft.java.maven.plugin-0.21.4.jar"
|
||||
"./jdtls.ext/com.microsoft.java.maven.plugin/target/com.microsoft.java.maven.plugin-0.22.0.jar"
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче