Skip to content

Commit 2f2c48d

Browse files
authored
Prepare 0.21.1 (#697)
1 parent b00b2df commit 2f2c48d

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.21.1
8+
### Changed
9+
- Scan two levels of directories for activation indicators. [PR#681](https://github.com/microsoft/vscode-java-dependency/pull/681)
10+
- Remove the `ASKUSER` option when specify the output path of exporting jar task. To make the extension asks for the output path when exporting jars, simply leave it empty. [#676](https://github.com/microsoft/vscode-java-dependency/issues/676)
11+
### Fixed
12+
- [Bugs fixed](https://github.com/microsoft/vscode-java-dependency/issues?q=is%3Aissue+label%3Abug+milestone%3A0.21.1+is%3Aclosed)
13+
714
## 0.21.0
815
### Added
916
- Add sub-menu for Maven and Gradle projects in Java Project explorer. [PR#664](https://github.com/microsoft/vscode-java-dependency/pull/664)

jdtls.ext/com.microsoft.jdtls.ext.core/.project

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
</natures>
3434
<filteredResources>
3535
<filter>
36-
<id>1655120454990</id>
36+
<id>1665551209562</id>
3737
<name></name>
3838
<type>30</type>
3939
<matcher>
4040
<id>org.eclipse.core.resources.regexFilterMatcher</id>
41-
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
41+
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
4242
</matcher>
4343
</filter>
4444
</filteredResources>

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

+1-1
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.21.0
5+
Bundle-Version: 0.21.1
66
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
77
Bundle-RequiredExecutionEnvironment: JavaSE-11
88
Bundle-ActivationPolicy: lazy

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

+1-1
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.21.0</version>
8+
<version>0.21.1</version>
99
</parent>
1010
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
1111
<packaging>eclipse-plugin</packaging>

jdtls.ext/pom.xml

+1-1
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.21.0</version>
7+
<version>0.21.1</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Java Project Manager</base.name>

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
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.21.0",
5+
"version": "0.21.1",
66
"publisher": "vscjava",
77
"preview": true,
88
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
@@ -48,7 +48,7 @@
4848
"main": "./main.js",
4949
"contributes": {
5050
"javaExtensions": [
51-
"./server/com.microsoft.jdtls.ext.core-0.21.0.jar"
51+
"./server/com.microsoft.jdtls.ext.core-0.21.1.jar"
5252
],
5353
"commands": [
5454
{

0 commit comments

Comments
 (0)