Skip to content

Commit b759dab

Browse files
authored
Prepare for 0.22.4 (#995)
1 parent c213de1 commit b759dab

File tree

10 files changed

+27
-23
lines changed

10 files changed

+27
-23
lines changed

CHANGELOG.md

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

7+
## 0.22.4
8+
### Added
9+
- Add `sourcePaths` key in `java.test.config` to specify source paths. [#982](https://github.com/microsoft/vscode-java-test/issues/982)
10+
711
## 0.22.3
812
### Added
9-
Skipped tests can be toggled out in the test report. [#754](https://github.com/microsoft/vscode-java-test/issues/754)
13+
- Skipped tests can be toggled out in the test report. [#754](https://github.com/microsoft/vscode-java-test/issues/754)
1014

1115
### Changed
12-
Migrate the icons in test explorer to [VS Code Icons](https://github.com/microsoft/vscode-codicons). [PR#961](https://github.com/microsoft/vscode-java-test/pull/961)
16+
- Migrate the icons in test explorer to [VS Code Icons](https://github.com/microsoft/vscode-codicons). [PR#961](https://github.com/microsoft/vscode-java-test/pull/961)
1317

1418
### Fixed
1519
- [Bugs fixed](https://github.com/microsoft/vscode-java-test/issues?q=is%3Aissue+is%3Aclosed+label%3Abug+milestone%3A0.22.3)

java-extension/build-tools/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.microsoft.java.test</groupId>
99
<artifactId>parent</artifactId>
10-
<version>0.22.3</version>
10+
<version>0.22.4</version>
1111
</parent>
1212
<groupId>com.microsoft.java.test</groupId>
1313
<artifactId>test-runner-build-tools</artifactId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<site>
3-
<bundle id="com.microsoft.java.test.plugin" version="0.22.3"/>
3+
<bundle id="com.microsoft.java.test.plugin" version="0.22.4"/>
44
</site>

java-extension/com.microsoft.java.test.plugin.site/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>com.microsoft.java.test</groupId>
7-
<version>0.22.3</version>
7+
<version>0.22.4</version>
88
</parent>
99
<artifactId>com.microsoft.java.test.plugin.site</artifactId>
1010
<packaging>eclipse-repository</packaging>

java-extension/com.microsoft.java.test.plugin/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.java.test.plugin
44
Bundle-SymbolicName: com.microsoft.java.test.plugin;singleton:=true
5-
Bundle-Version: 0.22.3
5+
Bundle-Version: 0.22.4
66
Bundle-Activator: com.microsoft.java.test.plugin.util.JUnitPlugin
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Import-Package: org.eclipse.jdt.core,

java-extension/com.microsoft.java.test.plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.java.test</groupId>
77
<artifactId>parent</artifactId>
8-
<version>0.22.3</version>
8+
<version>0.22.4</version>
99
</parent>
1010
<artifactId>com.microsoft.java.test.plugin</artifactId>
1111
<packaging>eclipse-plugin</packaging>

java-extension/com.microsoft.java.test.runner/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.java.test</groupId>
66
<artifactId>parent</artifactId>
7-
<version>0.22.3</version>
7+
<version>0.22.4</version>
88
</parent>
99
<artifactId>com.microsoft.java.test.runner</artifactId>
1010
<packaging>jar</packaging>

java-extension/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.java.test</groupId>
55
<artifactId>parent</artifactId>
66
<name>${base.name} :: Parent</name>
7-
<version>0.22.3</version>
7+
<version>0.22.4</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Java Test Runner</base.name>

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": {
66
"url": "https://github.com/Microsoft/vscode-java-test"
77
},
8-
"version": "0.22.3",
8+
"version": "0.22.4",
99
"publisher": "vscjava",
1010
"bugs": {
1111
"url": "https://github.com/Microsoft/vscode-java-test/issues"
@@ -46,7 +46,7 @@
4646
"main": "./main.js",
4747
"contributes": {
4848
"javaExtensions": [
49-
"./server/com.microsoft.java.test.plugin-0.22.3.jar",
49+
"./server/com.microsoft.java.test.plugin-0.22.4.jar",
5050
"./server/org.eclipse.jdt.junit4.runtime_1.1.1200.v20200214-0716.jar",
5151
"./server/org.eclipse.jdt.junit5.runtime_1.0.800.v20200214-0716.jar",
5252
"./server/org.junit.jupiter.api_5.6.0.v20200203-2009.jar",
@@ -380,8 +380,8 @@
380380
"iconv-lite": "^0.4.24",
381381
"lodash": "^4.17.15",
382382
"pug": "^2.0.4",
383-
"vscode-extension-telemetry-wrapper": "^0.7.1",
383+
"vscode-extension-telemetry-wrapper": "^0.8.0",
384384
"winston": "^3.2.1",
385385
"winston-transport": "^4.3.0"
386386
}
387-
}
387+
}

0 commit comments

Comments
 (0)