diff --git a/CHANGELOG.md b/CHANGELOG.md index c72caf45..d5bb9657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.44.0 +## What's Changed +* feat - junit 6 support in https://github.com/microsoft/vscode-java-test/pull/1820 +* fix - update build script for xml size limit in https://github.com/microsoft/vscode-java-test/pull/1815 + ## 0.43.2 ## What's Changed * fix - Update to jacoco 0.8.14 by @fbricon in https://github.com/microsoft/vscode-java-test/pull/1798 diff --git a/README.md b/README.md index 74cdb3a4..77e0010f 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ A lightweight extension to run and debug Java test cases in Visual Studio Code. - JUnit 4 (v4.8.0+) - JUnit 5 (v5.1.0+) +- JUnit 6 (v6.0.1+) - TestNG (v6.9.13.3+) > Note: JUnit 3 styled tests are not supported in this extension (i.e. extends `junit.framework.TestCase`). @@ -106,9 +107,13 @@ There are other VS Code embedded commands for testing, which can be found by sea There are some other VS Code embedded settings for testing, which can be found by searching `testing` in the Settings view. ## Project Setup +### JUnit 6 + +Please refer to [Getting Started](https://docs.junit.org/6.0.1/overview.html#overview-getting-started) from the JUnit 6's official document for getting started documentation. + ### JUnit 5 -Please refer to [Getting Started](https://junit.org/junit5/docs/current/user-guide/#overview-getting-started) from the JUnit 5's official document for getting started documentation. +Please refer to [Getting Started](https://docs.junit.org/5.14.1/overview.html) from the JUnit 5's official document for getting started documentation. > Note: If your project does not use build tools(Maven/Gradle/...), please make sure [junit-platform-console-standalone.jar](https://search.maven.org/search?q=g:org.junit.platform%20AND%20a:junit-platform-console-standalone) is on your project classpath. diff --git a/package-lock.json b/package-lock.json index 30187568..512608db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-java-test", - "version": "0.43.2", + "version": "0.44.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-java-test", - "version": "0.43.2", + "version": "0.44.0", "dependencies": { "fs-extra": "^10.1.0", "get-port": "^4.2.0", diff --git a/package.json b/package.json index e01a5df8..a5c55c99 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "repository": { "url": "https://github.com/Microsoft/vscode-java-test" }, - "version": "0.43.2", + "version": "0.44.0", "publisher": "vscjava", "bugs": { "url": "https://github.com/Microsoft/vscode-java-test/issues"