Update changelog for 0.2.0 (#104)
Signed-off-by: Yaohai Zheng <yaozheng@microsoft.com>
This commit is contained in:
parent
a24afa0571
commit
772660651b
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -4,7 +4,22 @@ All notable changes to the "vscode-java-debugger" extension will be documented i
|
|||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
## 0.2.0 - 2017-10-20
|
||||
### Added
|
||||
- Automatically resolve the main class during launching. See [Issue#9](https://github.com/Microsoft/vscode-java-debug/issues/9)
|
||||
- Fully support external source files together with the changes from VSCode. See [PR#58](https://github.com/Microsoft/java-debug/pull/58)
|
||||
|
||||
### Changed
|
||||
- Adopt the new DebugConfigurationProvider protocol of VS Code. See [PR#87](https://github.com/Microsoft/vscode-java-debug/pull/87)
|
||||
- Display the function names in the format of ClassName.MethodName(Parameter List...).. See [PR#73](https://github.com/Microsoft/java-debug/pull/73)
|
||||
- Improve the call stack display info for the files without sources. See [PR#72](https://github.com/Microsoft/java-debug/pull/72)
|
||||
|
||||
### Fixed
|
||||
- Fix the inconsistent URI issue when set breakpoint request. See [PR#84](https://github.com/Microsoft/java-debug/pull/84)
|
||||
- Avoid two stopped events for step and breakpoint. See [Issue#14](https://github.com/Microsoft/vscode-java-debug/issues/14)
|
||||
- Fix the issue that JDT search might return multiple results from the same project. See [Issue#21](https://github.com/Microsoft/java-debug/issues/21)
|
||||
- Avoid send error messages after debugger adapter stopped. See [PR#75](https://github.com/Microsoft/java-debug/pull/75)
|
||||
- Fix several exception cases. See [PR#64](https://github.com/Microsoft/java-debug/pull/62), [PR#67](https://github.com/Microsoft/java-debug/pull/67), [PR#74](https://github.com/Microsoft/java-debug/pull/74)
|
||||
|
||||
## 0.1.0 - 2017-09-27
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# Debugger for Java
|
||||
|
||||
[](https://gitter.im/Microsoft/vscode-java-debug)
|
||||
[](https://travis-ci.org/Microsoft/vscode-java-debug)
|
||||
|
||||
## Overview
|
||||
A lightweight Java Debugger based on [Java Debug Server](https://github.com/Microsoft/java-debug) which extends the [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java). It allows users debugging Java code using Visual Studio Code (VS Code). Here's a list of features:
|
||||
|
|
Loading…
Reference in New Issue