Skip to content

Commit 0ac0fa2

Browse files
authored
Bump version to 0.8.0 and update changelog (microsoft#269)
Signed-off-by: xuzho <xuzho@microsoft.com>
1 parent cdedd1f commit 0ac0fa2

7 files changed

Lines changed: 16 additions & 7 deletions

File tree

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.7.1
5+
Bundle-Version: 0.8.0
66
Bundle-Activator: com.microsoft.java.test.plugin.internal.JUnitPlugin
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Import-Package: org.eclipse.jdt.core,

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.7.1</version>
8+
<version>0.8.0</version>
99
</parent>
1010
<artifactId>com.microsoft.java.test.plugin</artifactId>
1111
<packaging>eclipse-plugin</packaging>

com.microsoft.java.test.runner.junit5/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.7.1</version>
7+
<version>0.8.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>com.microsoft.java.test.runner.junit5</artifactId>

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.7.1</version>
7+
<version>0.8.0</version>
88
</parent>
99
<artifactId>com.microsoft.java.test.runner</artifactId>
1010
<packaging>jar</packaging>

extension/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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.8.0 - 2018-08-08
8+
9+
### Changed
10+
- Refine the logic to consume test output for JUnit test runner.
11+
12+
### Fixed
13+
- Add project info into `TestSuite`, and run the tests per project to avoid the conflict of classpaths between projects.
14+
- Fix the issue that test output would be truncated when it exceeds buffer size.
15+
716
## 0.7.1 - 2018-07-11
817

918
### Fixed

extension/package.json

Lines changed: 2 additions & 2 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.7.1",
8+
"version": "0.8.0",
99
"publisher": "vscjava",
1010
"bugs": {
1111
"url": "https://github.com/Microsoft/vscode-java-test/issues"
@@ -39,7 +39,7 @@
3939
"main": "./out/src/extension",
4040
"contributes": {
4141
"javaExtensions": [
42-
"./server/com.microsoft.java.test.plugin-0.7.1.jar"
42+
"./server/com.microsoft.java.test.plugin-0.8.0.jar"
4343
],
4444
"views": {
4545
"test": [

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.7.1</version>
7+
<version>0.8.0</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Java Test Runner</base.name>

0 commit comments

Comments
 (0)