Skip to content

Commit f7a4e73

Browse files
authored
chore: Prepare for 0.19.0 (#585)
Signed-off-by: Sheng Chen <[email protected]>
1 parent 52eddf6 commit f7a4e73

File tree

8 files changed

+28
-19
lines changed

8 files changed

+28
-19
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to the "vscode-java-dependency" extension will be documented
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 0.19.0
8+
### Added
9+
- Support creating new JavaFX project via Maven archetype. [PR#581](https://github.com/microsoft/vscode-java-dependency/pull/581)
10+
- Support creating new Gradle project. [PR#583](https://github.com/microsoft/vscode-java-dependency/pull/583)
11+
12+
### Changed
13+
- Now you can simply leave the setting `java.project.exportJar.targetPath` empty when you want to specify the location of exported jar manually. [PR#575](https://github.com/microsoft/vscode-java-dependency/pull/575)
14+
- Add the `java.project.referencedLibraries` setting by default when creating an unmanaged folder project. [PR#584](https://github.com/microsoft/vscode-java-dependency/pull/584)
15+
716
## 0.18.9
817
### Fixed
918
- [Bugs fixed](https://github.com/microsoft/vscode-java-dependency/issues?q=is%3Aissue+label%3Abug+milestone%3A0.18.9+is%3Aclosed)

jdtls.ext/com.microsoft.jdtls.ext.activator/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: JDTLS EXT Activator
44
Bundle-SymbolicName: com.microsoft.jdtls.ext.activator;singleton:=true
5-
Bundle-Version: 0.18.9
5+
Bundle-Version: 0.19.0
66
Bundle-Activator: com.microsoft.jdtls.ext.activator.JdtlsExtActivator
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Import-Package: org.eclipse.jdt.core,

jdtls.ext/com.microsoft.jdtls.ext.activator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.jdtls.ext</groupId>
77
<artifactId>jdtls-ext-parent</artifactId>
8-
<version>0.18.9</version>
8+
<version>0.19.0</version>
99
</parent>
1010
<artifactId>com.microsoft.jdtls.ext.activator</artifactId>
1111
<packaging>eclipse-plugin</packaging>

jdtls.ext/com.microsoft.jdtls.ext.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: JDTLS EXT Core
44
Bundle-SymbolicName: com.microsoft.jdtls.ext.core;singleton:=true
5-
Bundle-Version: 0.18.9
5+
Bundle-Version: 0.19.0
66
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Bundle-ActivationPolicy: lazy

jdtls.ext/com.microsoft.jdtls.ext.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.jdtls.ext</groupId>
77
<artifactId>jdtls-ext-parent</artifactId>
8-
<version>0.18.9</version>
8+
<version>0.19.0</version>
99
</parent>
1010
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
1111
<packaging>eclipse-plugin</packaging>

jdtls.ext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.jdtls.ext</groupId>
55
<artifactId>jdtls-ext-parent</artifactId>
66
<name>${base.name} :: Parent</name>
7-
<version>0.18.9</version>
7+
<version>0.19.0</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Java Project Manager</base.name>

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-java-dependency",
33
"displayName": "Project Manager for Java",
44
"description": "%description%",
5-
"version": "0.18.9",
5+
"version": "0.19.0",
66
"publisher": "vscjava",
77
"preview": true,
88
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
@@ -42,7 +42,7 @@
4242
"main": "./main.js",
4343
"contributes": {
4444
"javaExtensions": [
45-
"./server/com.microsoft.jdtls.ext.core-0.18.9.jar"
45+
"./server/com.microsoft.jdtls.ext.core-0.19.0.jar"
4646
],
4747
"commands": [
4848
{
@@ -641,7 +641,7 @@
641641
"lodash": "^4.17.21",
642642
"minimatch": "^3.0.4",
643643
"semver": "^7.3.5",
644-
"vscode-extension-telemetry-wrapper": "^0.11.0",
644+
"vscode-extension-telemetry-wrapper": "^0.11.1",
645645
"vscode-tas-client": "^0.1.27"
646646
}
647647
}

0 commit comments

Comments
 (0)