Skip to content

Releases: maxbechtold/golden-master

0.7: Maintenance release

02 Jan 13:55
Compare
Choose a tag to compare

This release updates a few dependencies and no longer forces a JUnit Jupiter version on projects using the golden-master JUnit extension. Consequently, the JUnit Jupiter dependencies must be defined by the using project, e.g. when using Maven:

<dependency>
	<groupId>org.junit.jupiter</groupId>
	<artifactId>junit-jupiter-api</artifactId>
	<version>${junit.jupiter.version}</version>
	<scope>test</scope>
</dependency>
<dependency>
	<groupId>org.junit.platform</groupId>
	<artifactId>junit-platform-launcher</artifactId>
	<version>${junit.platform.version}</version>
	<scope>test</scope>
</dependency>
<dependency>
	<groupId>com.github.maxbechtold</groupId>
	<artifactId>golden-master</artifactId>
	<version>v0.7</version>
	<scope>test</scope>
</dependency>

Faster approval

03 Feb 13:44
Compare
Choose a tag to compare

This release contains the following changes:

  • one step less in initial approval: #6
  • update JUnit: #9
  • Fix: support test suites #12

Binaries served through JitPack, see README.md.

First release

03 Mar 12:35
Compare
Choose a tag to compare

This release provides the basic functionality. Since using the harness is mostly a matter of two annotations in your test class, the API can be considered fairly stable.

Suggestions or questions are welcome!