Skip to content

Commit 585be0f

Browse files
authored
upversion to 0.15.0 (#634)
Signed-off-by: Yan Zhang <[email protected]>
1 parent c42f15f commit 585be0f

File tree

4 files changed

+26
-19
lines changed

4 files changed

+26
-19
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 0.15.0
4+
### Added
5+
Add setup-focused getting started walkthrough. [#608](https://github.com/microsoft/vscode-java-pack/pull/608)
6+
7+
### Changed
8+
Refine wording in webview pages. [#606](https://github.com/microsoft/vscode-java-pack/pull/606) [#619](https://github.com/microsoft/vscode-java-pack/pull/619) [#631](https://github.com/microsoft/vscode-java-pack/pull/631)
9+
310
## 0.14.0
411
### Added
512
- Add classpath configuration page for unmanaged folder. [#567](https://github.com/microsoft/vscode-java-pack/pull/567), [#578](https://github.com/microsoft/vscode-java-pack/pull/578)

package-lock.json

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Java Extension Pack",
44
"description": "Popular extensions for Java development and more.",
55
"license": "MIT",
6-
"version": "0.14.0",
6+
"version": "0.15.0",
77
"publisher": "vscjava",
88
"preview": true,
99
"engines": {

src/welcome/assets/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const onInitialize = (event: any) => {
1313
if (data.command === "onDidFetchInitProps") {
1414
ReactDOM.render(React.createElement(GetStartedPage, data.props), document.getElementById("content"));
1515
}
16-
}
16+
};
1717

1818
window.addEventListener("message", onInitialize);
1919
onWillFetchInitProps();

0 commit comments

Comments
 (0)