Prepare changelog for 0.35.0 (#1035)
This commit is contained in:
parent
07366c988b
commit
ee14dbe3d6
|
@ -4,6 +4,13 @@ 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.35.0 - 2021-07-28
|
||||||
|
### Changed
|
||||||
|
- Add link to check detatils while reporting debugging progress. [PR#1034](https://github.com/microsoft/vscode-java-debug/pull/1034).
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Catch up build errors before running a Java application. [#949](https://github.com/microsoft/vscode-java-debug/issues/949).
|
||||||
|
|
||||||
## 0.34.0 - 2021-05-26
|
## 0.34.0 - 2021-05-26
|
||||||
### Changed
|
### Changed
|
||||||
- Allow customizing the "classPaths" and "modulePaths" configurations via launch.json. See [#93](https://github.com/microsoft/vscode-java-debug/issues/93), [#980](https://github.com/microsoft/vscode-java-debug/issues/980).
|
- Allow customizing the "classPaths" and "modulePaths" configurations via launch.json. See [#93](https://github.com/microsoft/vscode-java-debug/issues/93), [#980](https://github.com/microsoft/vscode-java-debug/issues/980).
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "vscode-java-debug",
|
"name": "vscode-java-debug",
|
||||||
"version": "0.34.0",
|
"version": "0.35.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.34.0",
|
"version": "0.35.0",
|
||||||
"publisher": "vscjava",
|
"publisher": "vscjava",
|
||||||
"preview": true,
|
"preview": true,
|
||||||
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
||||||
|
|
Loading…
Reference in New Issue