Skip to content

Commit 3512b8b

Browse files
authored
chore: Prepare for 0.22.0 (#756)
* chore: Prepare for 0.22.0 --------- Signed-off-by: Sheng Chen <sheche@microsoft.com>
1 parent b304e48 commit 3512b8b

File tree

9 files changed

+567
-413
lines changed

9 files changed

+567
-413
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1212
- Support creating files and folders in Java Projects explorer. [#598](https://github.com/microsoft/vscode-java-dependency/issues/598)
1313
- Apply file decorators to project level. [#481](https://github.com/microsoft/vscode-java-dependency/issues/481)
1414
- Give more hints about the project import status. [#580](https://github.com/microsoft/vscode-java-dependency/issues/580)
15+
16+
### Changed
17+
- Improve workflow of creating resources from Java Projects explorer. [PR#741](https://github.com/microsoft/vscode-java-dependency/pull/741), [PR#754](https://github.com/microsoft/vscode-java-dependency/pull/754)
18+
1519
### Fixed
1620
- Apply `files.exclude` to Java Projects explorer. [#214](https://github.com/microsoft/vscode-java-dependency/issues/214)
1721
- Empty packages will not appear sometimes. [#600](https://github.com/microsoft/vscode-java-dependency/issues/600)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@ You can tell that the glob pattern is supported. And here's more - you can incl
5757

5858
## Requirements
5959

60-
- JDK (version 11 or later)
61-
- VS Code (version 1.44.0 or later)
62-
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) (version 0.32.0 or later)
60+
- VS Code (version 1.77.0+)
61+
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java)
6362

6463

6564
## Settings
@@ -72,6 +71,7 @@ You can tell that the glob pattern is supported. And here's more - you can incl
7271
| `java.dependency.refreshDelay` | The delay time (ms) the auto refresh is invoked when changes are detected. | `2000ms` |
7372
| `java.dependency.packagePresentation` | Specify how to display the package. Supported values are: `flat`, `hierarchical`.| `flat` |
7473
| `java.project.exportJar.targetPath` | The output path of export jar. When this setting is **empty** , a file explorer will pop up to let the user select the output location.| `${workspaceFolder}/${workspaceFolderBasename}.jar` |
74+
| `java.project.explorer.showNonJavaResources` | When enabled, the explorer shows non-Java resources. | `true` |
7575

7676
## Contribution
7777

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.2
5+
Bundle-Version: 0.22.0
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.2</version>
8+
<version>0.22.0</version>
99
</parent>
1010
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
1111
<packaging>eclipse-plugin</packaging>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.jdtls.ext</groupId>
66
<artifactId>jdtls-ext-parent</artifactId>
7-
<version>0.21.2</version>
7+
<version>0.22.0</version>
88
</parent>
99
<artifactId>com.microsoft.jdtls.ext.tp</artifactId>
1010
<name>${base.name} :: Target Platform</name>

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

0 commit comments

Comments
 (0)