Skip to content

Commit

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

- General Availability (GA): [JUnit 5.4.2](https://github.com/junit-team/junit5/releases/tag/r5.4.2)
(April 7, 2019).
- Preview (Milestone/Release Candidate): [JUnit 5.5.0-M1](https://github.com/junit-team/junit5/releases/tag/r5.5.0-M1) (March 19, 2019).
- Preview (Milestone/Release Candidate): [JUnit 5.5.0-RC1](https://github.com/junit-team/junit5/releases/tag/r5.5.0-RC1) (June 6, 2019).

## Documentation

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

- **Group ID**: `org.junit.platform`
- **Version**: `1.4.2`, `5.5.0-M1`, or `1.5.0-SNAPSHOT`
- **Version**: `1.4.2`, `5.5.0-RC1`, or `1.5.0-SNAPSHOT`
- **Artifact IDs** and Java **module** name:
- `junit-platform-commons` (`org.junit.platform.commons`)
- `junit-platform-console` (`org.junit.platform.console`)
Expand All @@ -99,7 +99,7 @@ See also <https://repo1.maven.org/maven2/org/junit/> for releases and <https://o
### JUnit Jupiter

- **Group ID**: `org.junit.jupiter`
- **Version**: `5.4.2`, `5.5.0-M1`, or `5.5.0-SNAPSHOT`
- **Version**: `5.4.2`, `5.5.0-RC1`, or `5.5.0-SNAPSHOT`
- **Artifact IDs** and Java **module** name:
- `junit-jupiter` (`org.junit.jupiter`)
- `junit-jupiter-api` (`org.junit.jupiter.api`)
Expand All @@ -110,15 +110,15 @@ See also <https://repo1.maven.org/maven2/org/junit/> for releases and <https://o
### JUnit Vintage

- **Group ID**: `org.junit.vintage`
- **Version**: `5.4.2`, `5.5.0-M1`, or `5.5.0-SNAPSHOT`
- **Version**: `5.4.2`, `5.5.0-RC1`, or `5.5.0-SNAPSHOT`
- **Artifact ID** and Java **module** name:
- `junit-vintage-engine` (`org.junit.vintage.engine`)

### Bill of Materials (BOM)

- **Group ID**: `org.junit`
- **Artifact ID** `junit-bom`
- **Version**: `5.4.2`, `5.5.0-M1`, or `5.5.0-SNAPSHOT`
- **Version**: `5.4.2`, `5.5.0-RC1`, or `5.5.0-SNAPSHOT`


[Codecov]: https://codecov.io/gh/junit-team/junit5
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
[[release-notes-5.5.0-RC1]]
== 5.5.0-RC1

*Date of Release:*
*Date of Release:* June 6, 2019

*Scope:* ❓
*Scope:*

* Declarative `@Timeout` support
* New `InvocationInterceptor` extension API
* New `LifecycleMethodExecutionExceptionHandler` extension API
* Additional Kotlin friendly assertions
* Explicit Java module descriptors
* Deprecation of script-based conditions (`@EnabledIf`/`@DisabledIf`)

For a complete list of all _closed_ issues and pull requests for this release, consult the
link:{junit5-repo}+/milestone/37?closed=1+[5.5 RC1] milestone page in the JUnit repository
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
group = org.junit
version = 5.5.0-SNAPSHOT
version = 5.5.0-RC1

jupiterGroup = org.junit.jupiter

platformGroup = org.junit.platform
platformVersion = 1.5.0-SNAPSHOT
platformVersion = 1.5.0-RC1

vintageGroup = org.junit.vintage
vintageVersion = 5.5.0-SNAPSHOT
vintageVersion = 5.5.0-RC1

defaultBuiltBy = JUnit Team
releaseBranch = master
Expand Down

0 comments on commit 38297d6

Please sign in to comment.