Prepare hotfix release 0.33.1 (#996)
This commit is contained in:
parent
eb0c0d9e38
commit
ef8f74c1af
|
@ -4,6 +4,10 @@ All notable changes to the "vscode-java-debugger" extension will be documented i
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 0.33.1 - 2021-04-30
|
||||||
|
### Fixed
|
||||||
|
- HotFix: After upgrade from vscode-java v0.77.0 to v0.78.0 can't debug tests. [#995](https://github.com/microsoft/vscode-java-debug/issues/995).
|
||||||
|
|
||||||
## 0.33.0 - 2021-04-28
|
## 0.33.0 - 2021-04-28
|
||||||
### Added
|
### Added
|
||||||
- Support inline values feature. [PR#977](https://github.com/microsoft/vscode-java-debug/pull/977).
|
- Support inline values feature. [PR#977](https://github.com/microsoft/vscode-java-debug/pull/977).
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "vscode-java-debug",
|
"name": "vscode-java-debug",
|
||||||
"version": "0.33.0",
|
"version": "0.33.1",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "vscode-java-debug",
|
"name": "vscode-java-debug",
|
||||||
"displayName": "Debugger for Java",
|
"displayName": "Debugger for Java",
|
||||||
"description": "A lightweight Java debugger for Visual Studio Code",
|
"description": "A lightweight Java debugger for Visual Studio Code",
|
||||||
"version": "0.33.0",
|
"version": "0.33.1",
|
||||||
"publisher": "vscjava",
|
"publisher": "vscjava",
|
||||||
"preview": true,
|
"preview": true,
|
||||||
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"javaExtensions": [
|
"javaExtensions": [
|
||||||
"./server/com.microsoft.java.debug.plugin-0.31.0.jar"
|
"./server/com.microsoft.java.debug.plugin-0.31.1.jar"
|
||||||
],
|
],
|
||||||
"commands": [
|
"commands": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue