diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6835b395..dc9bbf70 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,18 @@ All notable changes to the "vscode-java-dependency" extension will be documented
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
+## 0.3.0 - 2018-12-21
+## Added:
+- Add the ability to show hierarchical package presentation [#57](https://github.com/Microsoft/vscode-java-dependency/issues/57).
+- Add Chinese localization [#134](https://github.com/Microsoft/vscode-java-dependency/issues/134).
+- Add a "Referenced Libraries" tree node for referenced libraries [#14](https://github.com/Microsoft/vscode-java-dependency/issues/14).
+
+### Updated
+- Fix: No way to link a resource files back to the project explorer [#106](https://github.com/Microsoft/vscode-java-dependency/issues/106).
+- 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).
+- 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).
+- Fix: Class file can't show the symbols in the dependency explorer [#35](https://github.com/Microsoft/vscode-java-dependency/issues/35).
+
## 0.2.0 - 2018-11-19
## Added:
- Add the support for resource files under resource source folders like src/main/resources.
diff --git a/jdtls.ext/com.microsoft.jdtls.ext.core/META-INF/MANIFEST.MF b/jdtls.ext/com.microsoft.jdtls.ext.core/META-INF/MANIFEST.MF
index 846d80c8..b6b741f2 100644
--- a/jdtls.ext/com.microsoft.jdtls.ext.core/META-INF/MANIFEST.MF
+++ b/jdtls.ext/com.microsoft.jdtls.ext.core/META-INF/MANIFEST.MF
@@ -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.2.0
+Bundle-Version: 0.3.0
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
diff --git a/jdtls.ext/com.microsoft.jdtls.ext.core/pom.xml b/jdtls.ext/com.microsoft.jdtls.ext.core/pom.xml
index 2842f1d3..c211871d 100644
--- a/jdtls.ext/com.microsoft.jdtls.ext.core/pom.xml
+++ b/jdtls.ext/com.microsoft.jdtls.ext.core/pom.xml
@@ -5,7 +5,7 @@
com.microsoft.jdtls.ext
jdtls-ext-parent
- 0.2.0
+ 0.3.0
com.microsoft.jdtls.ext.core
eclipse-plugin
diff --git a/jdtls.ext/pom.xml b/jdtls.ext/pom.xml
index a9e1a0a0..b7c950f2 100644
--- a/jdtls.ext/pom.xml
+++ b/jdtls.ext/pom.xml
@@ -4,7 +4,7 @@
com.microsoft.jdtls.ext
jdtls-ext-parent
${base.name} :: Parent
- 0.2.0
+ 0.3.0
pom
Java Project Manager
diff --git a/package-lock.json b/package-lock.json
index 5749e0a5..c29a7138 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "vscode-java-dependency",
- "version": "0.2.0",
+ "version": "0.3.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 91f6dc6c..8bbfac55 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "vscode-java-dependency",
"displayName": "Java Dependency Viewer",
"description": "%description%",
- "version": "0.2.0",
+ "version": "0.3.0",
"publisher": "vscjava",
"preview": true,
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
@@ -31,7 +31,7 @@
"main": "./dist/extension",
"contributes": {
"javaExtensions": [
- "./server/com.microsoft.jdtls.ext.core-0.2.0.jar"
+ "./server/com.microsoft.jdtls.ext.core-0.3.0.jar"
],
"commands": [
{
@@ -111,7 +111,7 @@
"compile": "tsc -watch -p ./",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"postinstall": "node ./node_modules/vscode/bin/install",
- "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",
+ "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",
"build-server": "./node_modules/.bin/gulp build_server",
"vscode:prepublish": "tsc -p ./ && webpack --mode production"
},