build: Prepare for 0.41.0 (#1677)
This commit is contained in:
Родитель
2a833363cd
Коммит
a30b06e54c
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -4,6 +4,16 @@ All notable changes to the "vscode-java-test" extension will be documented in th
|
|||
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).
|
||||
|
||||
## 0.41.0
|
||||
### Added
|
||||
- Support test coverage. [#387](https://github.com/microsoft/vscode-java-test/issues/387)
|
||||
- Support when clause for test configurations. [#1627](https://github.com/microsoft/vscode-java-test/issues/1627), contributed by [@ReubenFrankel](https://github.com/ReubenFrankel)
|
||||
|
||||
### Fixed
|
||||
- Upgrade tycho to v4.0.5. [#1656](https://github.com/microsoft/vscode-java-test/issues/1656), contributed by [@baronswindle](https://github.com/baronswindle)
|
||||
- Correct JDK requirement in readme page. [PR#1667](https://github.com/microsoft/vscode-java-test/pull/1667), contributed by [@hacke2](https://github.com/hacke2)
|
||||
|
||||
|
||||
## 0.40.1
|
||||
### Fixed
|
||||
- The working directory is not set to folder opened in VS Code when it's unmanaged folder. [#1606](https://github.com/microsoft/vscode-java-test/issues/1606)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.java.test</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<version>0.40.1</version>
|
||||
<version>0.41.0</version>
|
||||
</parent>
|
||||
<groupId>com.microsoft.java.test</groupId>
|
||||
<artifactId>test-runner-build-tools</artifactId>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<site>
|
||||
<bundle id="com.microsoft.java.test.plugin" version="0.40.1"/>
|
||||
<bundle id="com.microsoft.java.test.plugin" version="0.41.0"/>
|
||||
</site>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<parent>
|
||||
<artifactId>parent</artifactId>
|
||||
<groupId>com.microsoft.java.test</groupId>
|
||||
<version>0.40.1</version>
|
||||
<version>0.41.0</version>
|
||||
</parent>
|
||||
<artifactId>com.microsoft.java.test.plugin.site</artifactId>
|
||||
<packaging>eclipse-repository</packaging>
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Automatic-Module-Name: com.microsoft.java.test.plugin.test
|
||||
Bundle-Name: %Bundle-Name
|
||||
Bundle-SymbolicName: com.microsoft.java.test.plugin.test;singleton:=true
|
||||
Bundle-Version: 0.40.1
|
||||
Bundle-Version: 0.41.0
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-17
|
||||
Import-Package: org.osgi.framework;version="1.3.0"
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.java.test</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<version>0.40.1</version>
|
||||
<version>0.41.0</version>
|
||||
</parent>
|
||||
<artifactId>com.microsoft.java.test.plugin.test</artifactId>
|
||||
<packaging>eclipse-test-plugin</packaging>
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Automatic-Module-Name: com.microsoft.java.test.plugin
|
||||
Bundle-Name: com.microsoft.java.test.plugin
|
||||
Bundle-SymbolicName: com.microsoft.java.test.plugin;singleton:=true
|
||||
Bundle-Version: 0.40.1
|
||||
Bundle-Version: 0.41.0
|
||||
Bundle-Activator: com.microsoft.java.test.plugin.util.JUnitPlugin
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-17
|
||||
Import-Package: org.eclipse.jdt.core,
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.java.test</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<version>0.40.1</version>
|
||||
<version>0.41.0</version>
|
||||
</parent>
|
||||
<artifactId>com.microsoft.java.test.plugin</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.java.test</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<version>0.40.1</version>
|
||||
<version>0.41.0</version>
|
||||
</parent>
|
||||
<artifactId>com.microsoft.java.test.runner</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.java.test</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<version>0.40.1</version>
|
||||
<version>0.41.0</version>
|
||||
</parent>
|
||||
<artifactId>com.microsoft.java.test.tp</artifactId>
|
||||
<name>${base.name} :: Target Platform</name>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<groupId>com.microsoft.java.test</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<name>${base.name} :: Parent</name>
|
||||
<version>0.40.1</version>
|
||||
<version>0.41.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<base.name>Test Runner for Java</base.name>
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "vscode-java-test",
|
||||
"version": "0.40.1",
|
||||
"version": "0.41.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "vscode-java-test",
|
||||
"version": "0.40.1",
|
||||
"version": "0.41.0",
|
||||
"dependencies": {
|
||||
"fs-extra": "^10.1.0",
|
||||
"get-port": "^4.2.0",
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"repository": {
|
||||
"url": "https://github.com/Microsoft/vscode-java-test"
|
||||
},
|
||||
"version": "0.40.1",
|
||||
"version": "0.41.0",
|
||||
"publisher": "vscjava",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Microsoft/vscode-java-test/issues"
|
||||
|
@ -72,7 +72,7 @@
|
|||
"./server/org.eclipse.jdt.junit5.runtime_1.1.100.v20220907-0450.jar",
|
||||
"./server/org.opentest4j_1.2.0.jar",
|
||||
"./server/org.jacoco.core_0.8.11.202310140853.jar",
|
||||
"./server/com.microsoft.java.test.plugin-0.40.1.jar"
|
||||
"./server/com.microsoft.java.test.plugin-0.41.0.jar"
|
||||
],
|
||||
"viewsWelcome": [
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче