Skip to content

Commit a65330d

Browse files
authored
bump version 0.3.0 (#135)
1 parent aefa4e9 commit a65330d

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.3.0 - 2018-12-21
8+
## Added:
9+
- Add the ability to show hierarchical package presentation [#57](https://github.com/Microsoft/vscode-java-dependency/issues/57).
10+
- Add Chinese localization [#134](https://github.com/Microsoft/vscode-java-dependency/issues/134).
11+
- Add a "Referenced Libraries" tree node for referenced libraries [#14](https://github.com/Microsoft/vscode-java-dependency/issues/14).
12+
13+
### Updated
14+
- Fix: No way to link a resource files back to the project explorer [#106](https://github.com/Microsoft/vscode-java-dependency/issues/106).
15+
- Fix: The click on the the tree node will navigate to the start of comment [#124](https://github.com/Microsoft/vscode-java-dependency/issues/124).
16+
- Fix: The link between dependency explorer and active editor does not work for JDK classes [#110](https://github.com/Microsoft/vscode-java-dependency/issues/110).
17+
- Fix: Class file can't show the symbols in the dependency explorer [#35](https://github.com/Microsoft/vscode-java-dependency/issues/35).
18+
719
## 0.2.0 - 2018-11-19
820
## Added:
921
- Add the support for resource files under resource source folders like src/main/resources.

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.2.0
5+
Bundle-Version: 0.3.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.2.0</version>
8+
<version>0.3.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.2.0</version>
7+
<version>0.3.0</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Java Project Manager</base.name>

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "Java Dependency Viewer",
44
"description": "%description%",
5-
"version": "0.2.0",
5+
"version": "0.3.0",
66
"publisher": "vscjava",
77
"preview": true,
88
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
@@ -31,7 +31,7 @@
3131
"main": "./dist/extension",
3232
"contributes": {
3333
"javaExtensions": [
34-
"./server/com.microsoft.jdtls.ext.core-0.2.0.jar"
34+
"./server/com.microsoft.jdtls.ext.core-0.3.0.jar"
3535
],
3636
"commands": [
3737
{
@@ -111,7 +111,7 @@
111111
"compile": "tsc -watch -p ./",
112112
"watch": "webpack --mode development --watch --info-verbosity verbose",
113113
"postinstall": "node ./node_modules/vscode/bin/install",
114-
"test": "node ./scripts/download-vscode-for-system-tests && node ./scripts/install-vsix-dependencies redhat.java && node ./scripts/install-vsix-dependencies vscode-java-dependency-0.2.0.vsix && node ./scripts/run-vscode-tests",
114+
"test": "node ./scripts/download-vscode-for-system-tests && node ./scripts/install-vsix-dependencies redhat.java && node ./scripts/install-vsix-dependencies vscode-java-dependency-0.3.0.vsix && node ./scripts/run-vscode-tests",
115115
"build-server": "./node_modules/.bin/gulp build_server",
116116
"vscode:prepublish": "tsc -p ./ && webpack --mode production"
117117
},

0 commit comments

Comments
 (0)