diff --git a/CHANGELOG.md b/CHANGELOG.md index 91b34362..7abf3c78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## [Unreleased](https://github.com/TypedDevs/bashunit/compare/0.13.0...main) +## [Unreleased](https://github.com/TypedDevs/bashunit/compare/0.14.0...main) + +- Nothing yet... + +## [0.14.0](https://github.com/TypedDevs/bashunit/compare/0.13.0...0.14.0) - 2024-07-14 - Fix echo does not break test execution results - Add bashunit facade to enable custom assertions @@ -8,7 +12,7 @@ - Generate checksum on build - Enable display execution time on macOS with `SHOW_EXECUTION_TIME` - Support for displaying the clock without `perl` (for non-macOS) -- Enable strictmode +- Enable strict mode - Add `-l|--log-junit ` option - Add `-r|--report-html ` option - Add `--debug` option diff --git a/bashunit b/bashunit index 488487cf..d8c4e205 100755 --- a/bashunit +++ b/bashunit @@ -2,7 +2,7 @@ set -euo pipefail # shellcheck disable=SC2034 -declare -r BASHUNIT_VERSION="0.13.0" +declare -r BASHUNIT_VERSION="0.14.0" # shellcheck disable=SC2155 declare -r BASHUNIT_ROOT_DIR="$(dirname "${BASH_SOURCE[0]}")" diff --git a/package.json b/package.json index c26cae7a..723b8f17 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bashunit-docs", - "version": "0.13.0", - "checksum": "6d9f1b49e4cf61d9837277251cce566eaa8b73e0f417474949a48336bd43a901", + "version": "0.14.0", + "checksum": "84822a2f2d3a84646abad5fe26e6d49a952c6e5ea08e3752443d583346cc4d56", "description": "Docs for bashunit a simple testing library for bash scripts", "main": "index.js", "repository": "git@github.com:TypedDevs/bashunit.git",