Skip to content

Commit 32c57f8

Browse files
Prepare release for 0.38.0 (#1115)
* Prepare release for 0.38.0
1 parent 5fc394d commit 32c57f8

File tree

6 files changed

+23
-8
lines changed

6 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to the "vscode-java-debugger" extension will be documented i
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.38.0 - 2022-01-26
8+
### Added
9+
- Thanks for the contribution from [Mu-Tsun Tsai](https://github.com/MuTsunTsai). Add zh-tw locale. [#1087](https://github.com/microsoft/vscode-java-debug/pull/1087).
10+
11+
### Changed
12+
- Change the inline button to debug icon. [#1108](https://github.com/microsoft/vscode-java-debug/pull/1108).
13+
14+
### Fixed
15+
- Improve the search performance of resolving main class. [java-debug#395](https://github.com/microsoft/java-debug/pull/395).
16+
- If mainClass not specified, it will find main classes not belonging to current workspace. [#1098](https://github.com/microsoft/vscode-java-debug/issues/1098).
17+
- Update CONTRIBUTING docs. [#1105](https://github.com/microsoft/vscode-java-debug/issues/1105).
18+
719
## 0.37.0 - 2021-11-24
820
### Added
921
- Troubleshooting Guide for Encoding Issues on Windows. See [Troubleshooting_encoding](https://github.com/microsoft/vscode-java-debug/blob/main/Troubleshooting_encoding.md).

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ javaDebugger/
2525
```
2626

2727
### Prerequisites
28-
- [JDK](http://www.oracle.com/technetwork/java/javase/downloads/index.html), (version 1.8.0 or later)
29-
- [VS Code](https://code.visualstudio.com/), (version 1.19.0 or later)
30-
- [Node.JS](https://nodejs.org/en/), (>= 8.9.1, < 9.0.0)
31-
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java), (version 0.14.0 or later)
28+
- [JDK](http://www.oracle.com/technetwork/java/javase/downloads/index.html), (version 11 or later)
29+
- [VS Code](https://code.visualstudio.com/), (version 1.44.0 or later)
30+
- [Node.JS](https://nodejs.org/en/), (>= 12.8.1)
31+
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java), (version 0.60.0 or later)
3232

3333
Install all the dependencies using `npm` (supposed to be installed together with [Node.JS](https://nodejs.org/en/)).
3434
```bash
@@ -61,4 +61,4 @@ Since we have checked in a valid [launch.json](https://github.com/Microsoft/java
6161

6262
## Pull Requests
6363
Before we can accept a pull request from you, you'll need to sign a [Contributor License Agreement (CLA)](https://github.com/Microsoft/vscode/wiki/Contributor-License-Agreement). It is an automated process and you only need to do it once.
64-
To enable us to quickly review and accept your pull requests, always create one pull request per issue and [link the issue in the pull request](https://github.com/blog/957-introducing-issue-mentions).
64+
To enable us to quickly review and accept your pull requests, always create one pull request per issue and [link the issue in the pull request](https://github.com/blog/957-introducing-issue-mentions).

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ Pro Tip: The documentation [Configuration.md](https://github.com/microsoft/vscod
130130
Reference the [Troubleshooting Guide](https://github.com/Microsoft/vscode-java-debug/blob/master/Troubleshooting.md) for common errors.
131131
Reference the [Troubleshooting Guide for Encoding Issues](https://github.com/Microsoft/vscode-java-debug/blob/master/Troubleshooting_encoding.md) for encoding issues.
132132

133+
## Contributing
134+
If you are interested in fixing issues and contributing directly to the code base, please see the document [How to Contribute](https://github.com/microsoft/vscode-java-debug/blob/main/CONTRIBUTING.md).
135+
133136
## Feedback and Questions
134137
You can find the full list of issues at [Issue Tracker](https://github.com/Microsoft/vscode-java-debug/issues). You can submit a [bug or feature suggestion](https://github.com/Microsoft/vscode-java-debug/issues/new), and participate community driven [![Gitter](https://badges.gitter.im/Microsoft/vscode-java-debug.svg)](https://gitter.im/Microsoft/vscode-java-debug)
135138

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-java-debug",
33
"displayName": "Debugger for Java",
44
"description": "A lightweight Java debugger for Visual Studio Code",
5-
"version": "0.37.0",
5+
"version": "0.38.0",
66
"publisher": "vscjava",
77
"preview": true,
88
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
@@ -54,7 +54,7 @@
5454
}
5555
],
5656
"javaExtensions": [
57-
"./server/com.microsoft.java.debug.plugin-0.34.0.jar"
57+
"./server/com.microsoft.java.debug.plugin-0.35.0.jar"
5858
],
5959
"commands": [
6060
{
File renamed without changes.

0 commit comments

Comments
 (0)