Skip to content

Commit 2aeb0d9

Browse files
authored
Prepare for 0.7.0 (#217)
1 parent b87c7b5 commit 2aeb0d9

File tree

7 files changed

+147
-107
lines changed

7 files changed

+147
-107
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.7.0 - 2020-01-10
8+
### Added
9+
- Add `Collapse All` support in the `Java Dependencies` explorer. [PR#198](https://github.com/microsoft/vscode-java-dependency/pull/198)
10+
- Add file path as description for external jar files in the `Java Dependencies` explorer. [PR#209](https://github.com/microsoft/vscode-java-dependency/pull/209)
11+
- Add `Reveal in Explorer`, `Copy Path` and `Copy Relative Path` in the `Java Dependencies` explorer's right-click context menu. [#PR208](https://github.com/microsoft/vscode-java-dependency/pull/208)
12+
13+
### Updated
14+
- Open newly created project in the current window when no workspace folder is opened. [#180](https://github.com/microsoft/vscode-java-dependency/issues/180)
15+
- Update the icons in the navigation bar of the `Java Dependencies` explorer. [#197](https://github.com/microsoft/vscode-java-dependency/issues/197)
16+
717
## 0.6.0 - 2019-10-16
818
### Updated:
919
- Fix: When edit java file, the dependency view failed to auto refresh because of uncaught NPE. [#176](https://github.com/microsoft/vscode-java-dependency/issues/176)

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

jdtls.ext/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<groupId>com.microsoft.jdtls.ext</groupId>
55
<artifactId>jdtls-ext-parent</artifactId>
66
<name>${base.name} :: Parent</name>
7-
<version>0.6.0</version>
8-
<packaging>pom</packaging>
7+
<version>0.7.0</version>
8+
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Java Project Manager</base.name>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)