Bump version and prepare changelog for 0.43.0 (#1196)
This commit is contained in:
parent
1b49c1eaf1
commit
1abd612c42
|
@ -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/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 0.43.0 - 2022-07-27
|
||||
### Added
|
||||
- Support adding function breakpoints from the editor gutter. [java-debug#426](https://github.com/microsoft/java-debug/pull/426). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.
|
||||
|
||||
### Changed
|
||||
- Show target VM exceptions as result in evaluate requests. [java-debug#428](https://github.com/microsoft/java-debug/pull/428). Thanks to [Mathias Fußenegger](https://github.com/mfussenegger) for contribution.
|
||||
|
||||
## 0.42.0 - 2022-06-29
|
||||
### Added
|
||||
- Support function breakpoints, see [#258](https://github.com/microsoft/vscode-java-debug/issues/258). The current version support adding a function breakpoint with the syntax as `FullyQualifiedClassName#methodName` (e.g. `java.util.ArrayList#add`). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "vscode-java-debug",
|
||||
"version": "0.42.0",
|
||||
"version": "0.43.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "vscode-java-debug",
|
||||
"version": "0.42.0",
|
||||
"version": "0.43.0",
|
||||
"hasInstallScript": true,
|
||||
"license": "SEE LICENSE IN LICENSE.txt",
|
||||
"dependencies": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-java-debug",
|
||||
"displayName": "Debugger for Java",
|
||||
"description": "A lightweight Java debugger for Visual Studio Code",
|
||||
"version": "0.42.0",
|
||||
"version": "0.43.0",
|
||||
"publisher": "vscjava",
|
||||
"preview": true,
|
||||
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
||||
|
@ -54,7 +54,7 @@
|
|||
}
|
||||
],
|
||||
"javaExtensions": [
|
||||
"./server/com.microsoft.java.debug.plugin-0.38.0.jar"
|
||||
"./server/com.microsoft.java.debug.plugin-0.39.0.jar"
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue