diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7c9ca39f..baf33ea9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,19 @@
# Change Log
All notable changes to the "vscode-maven" extension will be documented in this file.
+## 0.22.0
+#### Added
+- Better support for PowerShell. [#494](https://github.com/microsoft/vscode-maven/pull/494)
+
+#### Changed
+- Keep the cache file of effective pom for diagnosis. [#319](https://github.com/microsoft/vscode-maven/issues/319#issuecomment-601494862)
+
+#### Fixed
+- Fix: mvnw was not identified if .mvn folder doesn't exist. [#504](https://github.com/microsoft/vscode-maven/issues/504)
+- Fix: notification "Maven executable not found in PATH" pops up for multiple times. [#501](https://github.com/microsoft/vscode-maven/issues/501)
+- Fix: tilde was not expanded as home directory in unix-like systems. [#507](https://github.com/microsoft/vscode-maven/pull/507)
+- Fix: Maven output didn't write to the integrated terminal window. [#489](https://github.com/microsoft/vscode-maven/issues/489)
+
## 0.21.4
#### Fixed
- Set custom environment variables in folder level. [#487](https://github.com/microsoft/vscode-maven/issues/487)
diff --git a/jdtls.ext/com.microsoft.java.maven.plugin/META-INF/MANIFEST.MF b/jdtls.ext/com.microsoft.java.maven.plugin/META-INF/MANIFEST.MF
index 9a64690d..9e6a180f 100644
--- a/jdtls.ext/com.microsoft.java.maven.plugin/META-INF/MANIFEST.MF
+++ b/jdtls.ext/com.microsoft.java.maven.plugin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: com.microsoft.java.maven
Bundle-SymbolicName: com.microsoft.java.maven.plugin;singleton:=true
-Bundle-Version: 0.21.4
+Bundle-Version: 0.22.0
Bundle-Activator: com.microsoft.java.maven.PluginActivator
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: org.eclipse.jdt.core,
diff --git a/jdtls.ext/com.microsoft.java.maven.plugin/pom.xml b/jdtls.ext/com.microsoft.java.maven.plugin/pom.xml
index 3bca12eb..d97bd435 100644
--- a/jdtls.ext/com.microsoft.java.maven.plugin/pom.xml
+++ b/jdtls.ext/com.microsoft.java.maven.plugin/pom.xml
@@ -4,7 +4,7 @@
com.microsoft.java.maven
parent
- 0.21.4
+ 0.22.0
com.microsoft.java.maven.plugin
eclipse-plugin
diff --git a/jdtls.ext/pom.xml b/jdtls.ext/pom.xml
index dae26cc8..f1a8c78d 100644
--- a/jdtls.ext/pom.xml
+++ b/jdtls.ext/pom.xml
@@ -4,7 +4,7 @@
com.microsoft.java.maven
parent
${base.name} :: Parent
- 0.21.4
+ 0.22.0
pom
JDTLS Maven Extension
diff --git a/package-lock.json b/package-lock.json
index ca9fd2e4..0aed88f0 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "vscode-maven",
- "version": "0.21.4",
+ "version": "0.22.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 5564797b..7f9f3b50 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "vscode-maven",
"displayName": "Maven for Java",
"description": "%description%",
- "version": "0.21.4",
+ "version": "0.22.0",
"icon": "resources/logo.png",
"publisher": "vscjava",
"preview": true,
@@ -51,7 +51,7 @@
"main": "./dist/extension",
"contributes": {
"javaExtensions": [
- "./jdtls.ext/com.microsoft.java.maven.plugin/target/com.microsoft.java.maven.plugin-0.21.4.jar"
+ "./jdtls.ext/com.microsoft.java.maven.plugin/target/com.microsoft.java.maven.plugin-0.22.0.jar"
],
"commands": [
{