chore: Prepare for 0.18.3 (#482)
This commit is contained in:
Родитель
214680c999
Коммит
95dd252862
|
@ -4,6 +4,12 @@ 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/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 0.18.3
|
||||
### Added
|
||||
- Add new unmanaged folder metadata for the project node. [PR#479](https://github.com/microsoft/vscode-java-dependency/pull/479)
|
||||
### Changed
|
||||
- Rename sorting group `9_sync` to `9_configuration`. [PR#480](https://github.com/microsoft/vscode-java-dependency/pull/480)
|
||||
|
||||
## 0.18.2
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: JDTLS EXT Activator
|
||||
Bundle-SymbolicName: com.microsoft.jdtls.ext.activator;singleton:=true
|
||||
Bundle-Version: 0.18.2
|
||||
Bundle-Version: 0.18.3
|
||||
Bundle-Activator: com.microsoft.jdtls.ext.activator.JdtlsExtActivator
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Import-Package: org.eclipse.jdt.core,
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.jdtls.ext</groupId>
|
||||
<artifactId>jdtls-ext-parent</artifactId>
|
||||
<version>0.18.2</version>
|
||||
<version>0.18.3</version>
|
||||
</parent>
|
||||
<artifactId>com.microsoft.jdtls.ext.activator</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: JDTLS EXT Core
|
||||
Bundle-SymbolicName: com.microsoft.jdtls.ext.core;singleton:=true
|
||||
Bundle-Version: 0.18.2
|
||||
Bundle-Version: 0.18.3
|
||||
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Bundle-ActivationPolicy: lazy
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.jdtls.ext</groupId>
|
||||
<artifactId>jdtls-ext-parent</artifactId>
|
||||
<version>0.18.2</version>
|
||||
<version>0.18.3</version>
|
||||
</parent>
|
||||
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<groupId>com.microsoft.jdtls.ext</groupId>
|
||||
<artifactId>jdtls-ext-parent</artifactId>
|
||||
<name>${base.name} :: Parent</name>
|
||||
<version>0.18.2</version>
|
||||
<version>0.18.3</version>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<base.name>Java Project Manager</base.name>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vscode-java-dependency",
|
||||
"version": "0.18.2",
|
||||
"version": "0.18.3",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-java-dependency",
|
||||
"displayName": "Project Manager for Java",
|
||||
"description": "%description%",
|
||||
"version": "0.18.2",
|
||||
"version": "0.18.3",
|
||||
"publisher": "vscjava",
|
||||
"preview": true,
|
||||
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
|
||||
|
@ -31,7 +31,7 @@
|
|||
"main": "./main.js",
|
||||
"contributes": {
|
||||
"javaExtensions": [
|
||||
"./server/com.microsoft.jdtls.ext.core-0.18.2.jar"
|
||||
"./server/com.microsoft.jdtls.ext.core-0.18.3.jar"
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
|
|
|
@ -25,6 +25,7 @@ const config = {
|
|||
},
|
||||
plugins: [
|
||||
// Copy files to dist folder where the runtime can find them
|
||||
// @ts-ignore
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче