Skip to content

Commit

Permalink
chore: Prepare for 0.22.0 (#756)
Browse files Browse the repository at this point in the history
* chore: Prepare for 0.22.0
---------

Signed-off-by: Sheng Chen <[email protected]>
  • Loading branch information
jdneo authored Apr 23, 2023
1 parent b304e48 commit 3512b8b
Show file tree
Hide file tree
Showing 9 changed files with 567 additions and 413 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Support creating files and folders in Java Projects explorer. [#598](https://github.com/microsoft/vscode-java-dependency/issues/598)
- Apply file decorators to project level. [#481](https://github.com/microsoft/vscode-java-dependency/issues/481)
- Give more hints about the project import status. [#580](https://github.com/microsoft/vscode-java-dependency/issues/580)

### Changed
- 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)

### Fixed
- Apply `files.exclude` to Java Projects explorer. [#214](https://github.com/microsoft/vscode-java-dependency/issues/214)
- Empty packages will not appear sometimes. [#600](https://github.com/microsoft/vscode-java-dependency/issues/600)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,8 @@ You can tell that the glob pattern is supported. And here's more - you can incl

## Requirements

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


## Settings
Expand All @@ -72,6 +71,7 @@ You can tell that the glob pattern is supported. And here's more - you can incl
| `java.dependency.refreshDelay` | The delay time (ms) the auto refresh is invoked when changes are detected. | `2000ms` |
| `java.dependency.packagePresentation` | Specify how to display the package. Supported values are: `flat`, `hierarchical`.| `flat` |
| `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` |
| `java.project.explorer.showNonJavaResources` | When enabled, the explorer shows non-Java resources. | `true` |

## Contribution

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.21.2
Bundle-Version: 0.22.0
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-ActivationPolicy: lazy
Expand Down
2 changes: 1 addition & 1 deletion jdtls.ext/com.microsoft.jdtls.ext.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.jdtls.ext</groupId>
<artifactId>jdtls-ext-parent</artifactId>
<version>0.21.2</version>
<version>0.22.0</version>
</parent>
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
<packaging>eclipse-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion jdtls.ext/com.microsoft.jdtls.ext.target/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.jdtls.ext</groupId>
<artifactId>jdtls-ext-parent</artifactId>
<version>0.21.2</version>
<version>0.22.0</version>
</parent>
<artifactId>com.microsoft.jdtls.ext.tp</artifactId>
<name>${base.name} :: Target Platform</name>
Expand Down
2 changes: 1 addition & 1 deletion jdtls.ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.microsoft.jdtls.ext</groupId>
<artifactId>jdtls-ext-parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.21.2</version>
<version>0.22.0</version>
<packaging>pom</packaging>
<properties>
<base.name>Java Project Manager</base.name>
Expand Down
Loading

0 comments on commit 3512b8b

Please sign in to comment.