Skip to content

Commit

Permalink
Bump version to 0.13.0 (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored Dec 27, 2018
1 parent 810605c commit 58ff14f
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 9 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ 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.13.0 - Dec 2018

## Added
- Add Chinese language support. [#437](https://github.com/Microsoft/vscode-java-test/issues/437)

## Changed
- Use webpack to improve the extension startup time. [#495](https://github.com/Microsoft/vscode-java-test/issues/495)
- Change the activation events of the extension. [#516](https://github.com/Microsoft/vscode-java-test/issues/516)
- Change the style of the test report. [#517](https://github.com/Microsoft/vscode-java-test/issues/517)

## Fixed
- Fix the bug that test explorer will keep refreshing when opening a large project. [#461](https://github.com/Microsoft/vscode-java-test/issues/461)
- Fix several bugs that cause the extension fails to run test cases. ([#134](https://github.com/Microsoft/vscode-java-test/issues/134), [#488](https://github.com/Microsoft/vscode-java-test/issues/488), [#504](https://github.com/Microsoft/vscode-java-test/issues/504), [#515](https://github.com/Microsoft/vscode-java-test/issues/515))

## 0.12.0 - Dec 2018

## Added
Expand All @@ -16,7 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Change the foreground color of the status bar items. [#467](https://github.com/Microsoft/vscode-java-test/issues/467)

## Fixed
- Fix the bug that test runners will run forever. ([#482](https://github.com/Microsoft/vscode-java-test/issues/482))
- Fix the bug that test runners will run forever. [#482](https://github.com/Microsoft/vscode-java-test/issues/482)

## 0.11.1 - Nov 2018

Expand Down
2 changes: 1 addition & 1 deletion java-extension/build-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
</parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>test-runner-build-tools</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: com.microsoft.java.test.plugin
Bundle-SymbolicName: com.microsoft.java.test.plugin;singleton:=true
Bundle-Version: 0.12.0
Bundle-Version: 0.13.0
Bundle-Activator: com.microsoft.java.test.plugin.util.JUnitPlugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: org.eclipse.jdt.core,
Expand Down
2 changes: 1 addition & 1 deletion java-extension/com.microsoft.java.test.plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
</parent>
<artifactId>com.microsoft.java.test.plugin</artifactId>
<packaging>eclipse-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion java-extension/com.microsoft.java.test.runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
</parent>
<artifactId>com.microsoft.java.test.runner</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion java-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.12.0</version>
<version>0.13.0</version>
<packaging>pom</packaging>
<properties>
<base.name>Java Test Runner</base.name>
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository": {
"url": "https://github.com/Microsoft/vscode-java-test"
},
"version": "0.12.0",
"version": "0.13.0",
"publisher": "vscjava",
"bugs": {
"url": "https://github.com/Microsoft/vscode-java-test/issues"
Expand Down Expand Up @@ -48,7 +48,7 @@
"main": "./dist/extension",
"contributes": {
"javaExtensions": [
"./server/com.microsoft.java.test.plugin-0.12.0.jar"
"./server/com.microsoft.java.test.plugin-0.13.0.jar"
],
"views": {
"test": [
Expand Down

0 comments on commit 58ff14f

Please sign in to comment.