Prepare release for 0.23.5 (#821)
This commit is contained in:
Родитель
dd8845caaf
Коммит
cbf13db16a
|
@ -4,6 +4,13 @@ All notable changes to the "vscode-java-dependency" extension will be documented
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 0.23.5
|
||||||
|
### Added
|
||||||
|
- Add 'New Java File' menu to File Explorer. [PR#820](https://github.com/microsoft/vscode-java-dependency/pull/820).
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Adjust the existing File Explorer menu order. [PR#820](https://github.com/microsoft/vscode-java-dependency/pull/820).
|
||||||
|
|
||||||
## 0.23.4
|
## 0.23.4
|
||||||
### Added
|
### Added
|
||||||
- Contribute 'New Java Project...' command to `File` > `New File...` and File Explorer menus. [PR#809](https://github.com/microsoft/vscode-java-dependency/pull/809)
|
- Contribute 'New Java Project...' command to `File` > `New File...` and File Explorer menus. [PR#809](https://github.com/microsoft/vscode-java-dependency/pull/809)
|
||||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: JDTLS EXT Core
|
Bundle-Name: JDTLS EXT Core
|
||||||
Bundle-SymbolicName: com.microsoft.jdtls.ext.core;singleton:=true
|
Bundle-SymbolicName: com.microsoft.jdtls.ext.core;singleton:=true
|
||||||
Bundle-Version: 0.23.4
|
Bundle-Version: 0.23.5
|
||||||
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
|
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.microsoft.jdtls.ext</groupId>
|
<groupId>com.microsoft.jdtls.ext</groupId>
|
||||||
<artifactId>jdtls-ext-parent</artifactId>
|
<artifactId>jdtls-ext-parent</artifactId>
|
||||||
<version>0.23.4</version>
|
<version>0.23.5</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
|
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.microsoft.jdtls.ext</groupId>
|
<groupId>com.microsoft.jdtls.ext</groupId>
|
||||||
<artifactId>jdtls-ext-parent</artifactId>
|
<artifactId>jdtls-ext-parent</artifactId>
|
||||||
<version>0.23.4</version>
|
<version>0.23.5</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>com.microsoft.jdtls.ext.tp</artifactId>
|
<artifactId>com.microsoft.jdtls.ext.tp</artifactId>
|
||||||
<name>${base.name} :: Target Platform</name>
|
<name>${base.name} :: Target Platform</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<groupId>com.microsoft.jdtls.ext</groupId>
|
<groupId>com.microsoft.jdtls.ext</groupId>
|
||||||
<artifactId>jdtls-ext-parent</artifactId>
|
<artifactId>jdtls-ext-parent</artifactId>
|
||||||
<name>${base.name} :: Parent</name>
|
<name>${base.name} :: Parent</name>
|
||||||
<version>0.23.4</version>
|
<version>0.23.5</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<properties>
|
<properties>
|
||||||
<base.name>Java Project Manager</base.name>
|
<base.name>Java Project Manager</base.name>
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "vscode-java-dependency",
|
"name": "vscode-java-dependency",
|
||||||
"version": "0.23.4",
|
"version": "0.23.5",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "vscode-java-dependency",
|
"name": "vscode-java-dependency",
|
||||||
"version": "0.23.4",
|
"version": "0.23.5",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"await-lock": "^2.2.2",
|
"await-lock": "^2.2.2",
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "vscode-java-dependency",
|
"name": "vscode-java-dependency",
|
||||||
"displayName": "Project Manager for Java",
|
"displayName": "Project Manager for Java",
|
||||||
"description": "%description%",
|
"description": "%description%",
|
||||||
"version": "0.23.4",
|
"version": "0.23.5",
|
||||||
"publisher": "vscjava",
|
"publisher": "vscjava",
|
||||||
"preview": false,
|
"preview": false,
|
||||||
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
|
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
"main": "./main.js",
|
"main": "./main.js",
|
||||||
"contributes": {
|
"contributes": {
|
||||||
"javaExtensions": [
|
"javaExtensions": [
|
||||||
"./server/com.microsoft.jdtls.ext.core-0.23.4.jar"
|
"./server/com.microsoft.jdtls.ext.core-0.23.5.jar"
|
||||||
],
|
],
|
||||||
"commands": [
|
"commands": [
|
||||||
{
|
{
|
||||||
|
|
Загрузка…
Ссылка в новой задаче