Bump version and prepare changelog for 0.33.0 (#985)
* Bump version and prepare changelog for 0.33.0
This commit is contained in:
parent
97aa63b5ba
commit
09ea696337
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -4,6 +4,17 @@ 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.0 - 2021-04-29
|
||||||
|
### Added
|
||||||
|
- Support inline values feature. [PR#977](https://github.com/microsoft/vscode-java-debug/pull/977).
|
||||||
|
- Show VARIABLES with different data views. [PR#982](https://github.com/microsoft/vscode-java-debug/pull/982).
|
||||||
|
- Adopt new APIs from vscode-tas-client. [#974](https://github.com/microsoft/vscode-java-debug/pull/974).
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Breakpoints inside record methods don't work. [#973](https://github.com/microsoft/vscode-java-debug/issues/973).
|
||||||
|
- Support environment variable for port number in launch.json debug configuration. [#962](https://github.com/microsoft/vscode-java-debug/issues/962).
|
||||||
|
- Thanks for the contribution from [ZingBlue](https://github.com/ZingBlue): Spelling fix. [#968](https://github.com/microsoft/vscode-java-debug/pull/968).
|
||||||
|
|
||||||
## 0.32.1 - 2021-03-23
|
## 0.32.1 - 2021-03-23
|
||||||
### Fixed
|
### Fixed
|
||||||
- Cannot launch debug session using JDK 16. [#970](https://github.com/microsoft/vscode-java-debug/issues/970).
|
- Cannot launch debug session using JDK 16. [#970](https://github.com/microsoft/vscode-java-debug/issues/970).
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "vscode-java-debug",
|
"name": "vscode-java-debug",
|
||||||
"version": "0.32.1",
|
"version": "0.33.0",
|
||||||
"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.32.1",
|
"version": "0.33.0",
|
||||||
"publisher": "vscjava",
|
"publisher": "vscjava",
|
||||||
"preview": true,
|
"preview": true,
|
||||||
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"javaExtensions": [
|
"javaExtensions": [
|
||||||
"./server/com.microsoft.java.debug.plugin-0.30.1.jar"
|
"./server/com.microsoft.java.debug.plugin-0.31.0.jar"
|
||||||
],
|
],
|
||||||
"commands": [
|
"commands": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue