Skip to content

Commit bc9d569

Browse files
authored
build - Prepare for 0.43.0 (#1739)
1 parent 097684d commit bc9d569

File tree

13 files changed

+26
-14
lines changed

13 files changed

+26
-14
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-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.43.0
8+
## What's Changed
9+
* feat - Set which encoding your test JVM will start with by @awilkins in https://github.com/microsoft/vscode-java-test/pull/1735
10+
* fix - method parsing error by @jdneo in https://github.com/microsoft/vscode-java-test/pull/1722
11+
* fix - Use project's jacoco agent when it's available by @jdneo in https://github.com/microsoft/vscode-java-test/pull/1723
12+
* docs - Fix TestNG Docs link by @antublue in https://github.com/microsoft/vscode-java-test/pull/1736
13+
* build - Update jacoco to 0.8.12 by @jdneo in https://github.com/microsoft/vscode-java-test/pull/1720
14+
15+
## New Contributors
16+
* @antublue made their first contribution in https://github.com/microsoft/vscode-java-test/pull/1736
17+
* @awilkins made their first contribution in https://github.com/microsoft/vscode-java-test/pull/1735
18+
719
## 0.42.0
820
## What's Changed
921
* feat - allow other extensions to register test runner by @jdneo in https://github.com/microsoft/vscode-java-test/pull/1705

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.42.0</version>
10+
<version>0.43.0</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.42.0"/>
3+
<bundle id="com.microsoft.java.test.plugin" version="0.43.0"/>
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.42.0</version>
7+
<version>0.43.0</version>
88
</parent>
99
<artifactId>com.microsoft.java.test.plugin.site</artifactId>
1010
<packaging>eclipse-repository</packaging>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Automatic-Module-Name: com.microsoft.java.test.plugin.test
44
Bundle-Name: %Bundle-Name
55
Bundle-SymbolicName: com.microsoft.java.test.plugin.test;singleton:=true
6-
Bundle-Version: 0.42.0
6+
Bundle-Version: 0.43.0
77
Bundle-RequiredExecutionEnvironment: JavaSE-17
88
Import-Package: org.osgi.framework;version="1.3.0"
99
Bundle-Localization: plugin

java-extension/com.microsoft.java.test.plugin.test/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.42.0</version>
8+
<version>0.43.0</version>
99
</parent>
1010
<artifactId>com.microsoft.java.test.plugin.test</artifactId>
1111
<packaging>eclipse-test-plugin</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
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Automatic-Module-Name: com.microsoft.java.test.plugin
44
Bundle-Name: com.microsoft.java.test.plugin
55
Bundle-SymbolicName: com.microsoft.java.test.plugin;singleton:=true
6-
Bundle-Version: 0.42.0
6+
Bundle-Version: 0.43.0
77
Bundle-Activator: com.microsoft.java.test.plugin.util.JUnitPlugin
88
Bundle-RequiredExecutionEnvironment: JavaSE-17
99
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.42.0</version>
8+
<version>0.43.0</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.42.0</version>
7+
<version>0.43.0</version>
88
</parent>
99
<artifactId>com.microsoft.java.test.runner</artifactId>
1010
<packaging>jar</packaging>

java-extension/com.microsoft.java.test.target/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.42.0</version>
7+
<version>0.43.0</version>
88
</parent>
99
<artifactId>com.microsoft.java.test.tp</artifactId>
1010
<name>${base.name} :: Target Platform</name>

0 commit comments

Comments
 (0)