Skip to content

Commit

Permalink
Release 5.3 M1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Jun 24, 2018
1 parent 48cbc93 commit d874e53
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 24 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This repository is the home of the next generation of JUnit, _JUnit 5_.

- General Availability (GA): [JUnit 5.2.0](https://github.com/junit-team/junit5/releases/tag/r5.2.0)
(April 29, 2018).
- Preview (Milestone/Release Candidate): N/A
- Preview (Milestone/Release Candidate): [JUnit 5.3.0 M1](https://github.com/junit-team/junit5/releases/tag/r5.3.0-M1)

## Documentation

Expand Down Expand Up @@ -88,7 +88,7 @@ See also <http://repo1.maven.org/maven2/org/junit/> for releases and <https://os
### JUnit Platform

- **Group ID**: `org.junit.platform`
- **Version**: `1.2.0` or `1.3.0-SNAPSHOT`
- **Version**: `1.2.0` or `1.3.0-M1` or `1.3.0-SNAPSHOT`
- **Artifact IDs** and **Automatic-Module-Name**:
- `junit-platform-commons` (`org.junit.platform.commons`)
- `junit-platform-console` (`org.junit.platform.console`)
Expand All @@ -102,7 +102,7 @@ See also <http://repo1.maven.org/maven2/org/junit/> for releases and <https://os
### JUnit Jupiter

- **Group ID**: `org.junit.jupiter`
- **Version**: `5.2.0` or `5.3.0-SNAPSHOT`
- **Version**: `5.2.0` or `5.3.0-M1` or `5.3.0-SNAPSHOT`
- **Artifact IDs** and **Automatic-Module-Name**:
- `junit-jupiter-api` (`org.junit.jupiter.api`)
- `junit-jupiter-engine` (`org.junit.jupiter.engine`)
Expand All @@ -112,15 +112,15 @@ See also <http://repo1.maven.org/maven2/org/junit/> for releases and <https://os
### JUnit Vintage

- **Group ID**: `org.junit.vintage`
- **Version**: `5.2.0` or `5.3.0-SNAPSHOT`
- **Version**: `5.2.0` or `5.3.0-M1` or `5.3.0-SNAPSHOT`
- **Artifact ID** and **Automatic-Module-Name**:
- `junit-vintage-engine` (`org.junit.vintage.engine`)

### Bill of Materials (BOM)

- **Group ID**: `org.junit`
- **Artifact ID** `junit-bom`
- **Version**: `5.2.0` or `5.3.0-SNAPSHOT`
- **Version**: `5.2.0` or `5.3.0-M1` or `5.3.0-SNAPSHOT`

## Java Module Names

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[[release-notes-5.3.0-M1]]
== 5.3.0-M1

*Date of Release:*
*Date of Release:* June 24, 2018

*Scope:* Parallel test execution, output capturing, test sources for dynamic tests as well
as various minor improvements and bug fixes.
Expand Down Expand Up @@ -72,10 +72,6 @@ on GitHub.
many tests as possible while still informing the user of containers and tests that
could not be properly discovered.

==== Deprecations and Breaking Changes

* ❓

==== New Features and Improvements

* Experimental support for parallel test execution. By default, tests are still executed
Expand All @@ -98,14 +94,4 @@ on GitHub.
[[release-notes-5.3.0-M1-junit-vintage]]
=== JUnit Vintage

==== Bug Fixes

* ❓

==== Deprecations and Breaking Changes

* ❓

==== New Features and Improvements

* ❓
No changes.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
group = org.junit
version = 5.3.0-SNAPSHOT
version = 5.3.0-M1

jupiterGroup = org.junit.jupiter
jupiterBaseline = 5.2.0

platformGroup = org.junit.platform
platformVersion = 1.3.0-SNAPSHOT
platformVersion = 1.3.0-M1
platformBaseline = 1.2.0

vintageGroup = org.junit.vintage
vintageVersion = 5.3.0-SNAPSHOT
vintageVersion = 5.3.0-M1
vintageBaseline = 5.2.0

# --release release
Expand Down

0 comments on commit d874e53

Please sign in to comment.