From eb1daec86772a1c096a3bac00fd48ca6add33058 Mon Sep 17 00:00:00 2001 From: phillcunnington Date: Tue, 1 Jun 2021 13:23:13 +0100 Subject: [PATCH] Release Cuppa 1.6.0 --- build.gradle | 2 +- docs/_posts/2021-06-01-1.6.0-released.md | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 docs/_posts/2021-06-01-1.6.0-released.md diff --git a/build.gradle b/build.gradle index 10df21a..5ee5164 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ allprojects { apply plugin: 'jacoco' group = 'org.forgerock.cuppa' - version = '1.5.0' + version = '1.6.0' repositories { mavenLocal() diff --git a/docs/_posts/2021-06-01-1.6.0-released.md b/docs/_posts/2021-06-01-1.6.0-released.md new file mode 100644 index 0000000..973e180 --- /dev/null +++ b/docs/_posts/2021-06-01-1.6.0-released.md @@ -0,0 +1,18 @@ +--- +title: 1.6.0 Released +author: phillcunnington +--- + +**Cuppa 1.6.0 is now available.** + +This release adds a new method to the `Runner`, `#getExitCode` that can be called after a test run +to determine the overall status of the test run. + +The following list specifies the order in which the exit code is determined: +* If no tests are run the exit code will be `4` +* If any block, test hook or test fails the exit code will be `1` +* If any test is skipped the exit code will be `2` +* If any test is pending the exit code will be `3` +* If none of the above the exit code will be `0` + +Check out [the release](https://github.com/cuppa-framework/cuppa/releases/tag/v1.6.0). \ No newline at end of file