diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6257b0f7..3d0911c1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,14 @@ All notable changes to the "vscode-java-test" extension will be documented in th
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.26.1
+### Changed
+- Automatically switch to `DEBUG CONSOLE` when a new test session starts. [#1106](https://github.com/microsoft/vscode-java-test/issues/1106)
+- Do not show the `Test Explorer` for a non-Java workspace. [#793](https://github.com/microsoft/vscode-java-test/issues/793)
+
+### Fixed
+- [Bugs fixed](https://github.com/microsoft/vscode-java-test/issues?q=is%3Aissue+is%3Aclosed+label%3Abug+milestone%3A0.26.1)
+
## 0.26.0
### Added
- Navigate from stacktrace line to proper file in test reports. [#384](https://github.com/microsoft/vscode-java-test/issues/384)
diff --git a/java-extension/build-tools/pom.xml b/java-extension/build-tools/pom.xml
index fc72e777..6f53c4d3 100644
--- a/java-extension/build-tools/pom.xml
+++ b/java-extension/build-tools/pom.xml
@@ -7,7 +7,7 @@
com.microsoft.java.test
parent
- 0.26.0
+ 0.26.1
com.microsoft.java.test
test-runner-build-tools
diff --git a/java-extension/com.microsoft.java.test.plugin.site/category.xml b/java-extension/com.microsoft.java.test.plugin.site/category.xml
index 9f2260bc..26d68aa1 100644
--- a/java-extension/com.microsoft.java.test.plugin.site/category.xml
+++ b/java-extension/com.microsoft.java.test.plugin.site/category.xml
@@ -1,4 +1,4 @@
-
+
\ No newline at end of file
diff --git a/java-extension/com.microsoft.java.test.plugin.site/pom.xml b/java-extension/com.microsoft.java.test.plugin.site/pom.xml
index 2a4bd915..51667f74 100644
--- a/java-extension/com.microsoft.java.test.plugin.site/pom.xml
+++ b/java-extension/com.microsoft.java.test.plugin.site/pom.xml
@@ -4,7 +4,7 @@
parent
com.microsoft.java.test
- 0.26.0
+ 0.26.1
com.microsoft.java.test.plugin.site
eclipse-repository
diff --git a/java-extension/com.microsoft.java.test.plugin/META-INF/MANIFEST.MF b/java-extension/com.microsoft.java.test.plugin/META-INF/MANIFEST.MF
index e95d1ef2..036fe72c 100644
--- a/java-extension/com.microsoft.java.test.plugin/META-INF/MANIFEST.MF
+++ b/java-extension/com.microsoft.java.test.plugin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: com.microsoft.java.test.plugin
Bundle-SymbolicName: com.microsoft.java.test.plugin;singleton:=true
-Bundle-Version: 0.26.0
+Bundle-Version: 0.26.1
Bundle-Activator: com.microsoft.java.test.plugin.util.JUnitPlugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: org.eclipse.jdt.core,
diff --git a/java-extension/com.microsoft.java.test.plugin/pom.xml b/java-extension/com.microsoft.java.test.plugin/pom.xml
index e03665cd..35245e8b 100644
--- a/java-extension/com.microsoft.java.test.plugin/pom.xml
+++ b/java-extension/com.microsoft.java.test.plugin/pom.xml
@@ -5,7 +5,7 @@
com.microsoft.java.test
parent
- 0.26.0
+ 0.26.1
com.microsoft.java.test.plugin
eclipse-plugin
diff --git a/java-extension/com.microsoft.java.test.runner/pom.xml b/java-extension/com.microsoft.java.test.runner/pom.xml
index 50c9c3c3..49b2bc9e 100644
--- a/java-extension/com.microsoft.java.test.runner/pom.xml
+++ b/java-extension/com.microsoft.java.test.runner/pom.xml
@@ -4,7 +4,7 @@
com.microsoft.java.test
parent
- 0.26.0
+ 0.26.1
com.microsoft.java.test.runner
jar
diff --git a/java-extension/pom.xml b/java-extension/pom.xml
index edae4010..2b96c539 100644
--- a/java-extension/pom.xml
+++ b/java-extension/pom.xml
@@ -4,7 +4,7 @@
com.microsoft.java.test
parent
${base.name} :: Parent
- 0.26.0
+ 0.26.1
pom
Java Test Runner
diff --git a/package-lock.json b/package-lock.json
index 27f127ec..e95aa85e 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "vscode-java-test",
- "version": "0.26.0",
+ "version": "0.26.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index ff632a91..767edf17 100644
--- a/package.json
+++ b/package.json
@@ -5,7 +5,7 @@
"repository": {
"url": "https://github.com/Microsoft/vscode-java-test"
},
- "version": "0.26.0",
+ "version": "0.26.1",
"publisher": "vscjava",
"bugs": {
"url": "https://github.com/Microsoft/vscode-java-test/issues"
@@ -43,7 +43,7 @@
"main": "./main.js",
"contributes": {
"javaExtensions": [
- "./server/com.microsoft.java.test.plugin-0.26.0.jar",
+ "./server/com.microsoft.java.test.plugin-0.26.1.jar",
"./server/org.eclipse.jdt.junit4.runtime_1.1.1200.v20200214-0716.jar",
"./server/org.eclipse.jdt.junit5.runtime_1.0.900.v20200513-0617.jar",
"./server/org.junit.jupiter.api_5.6.0.v20200203-2009.jar",