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/)
|
||||
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
|
||||
### Added
|
||||
- Support inline values feature. [PR#977](https://github.com/microsoft/vscode-java-debug/pull/977).
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vscode-java-debug",
|
||||
"version": "0.33.0",
|
||||
"version": "0.33.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-java-debug",
|
||||
"displayName": "Debugger for Java",
|
||||
"description": "A lightweight Java debugger for Visual Studio Code",
|
||||
"version": "0.33.0",
|
||||
"version": "0.33.1",
|
||||
"publisher": "vscjava",
|
||||
"preview": true,
|
||||
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
||||
|
@ -51,7 +51,7 @@
|
|||
}
|
||||
],
|
||||
"javaExtensions": [
|
||||
"./server/com.microsoft.java.debug.plugin-0.31.0.jar"
|
||||
"./server/com.microsoft.java.debug.plugin-0.31.1.jar"
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue