Skip to content

Commit 38fd814

Browse files
committed
release: 0.38.0
1 parent 39829fa commit 38fd814

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## [0.38.0](https://github.com/TypedDevs/bashunit/compare/0.37.0...0.38.0) - 2026-06-07
6+
57
### Added
68
- Official `TypedDevs/bashunit` GitHub Action: composite install action, pinnable by commit SHA for immutable installs (`version`, `directory`, `add-to-path`, `verify-checksum` inputs; `path`, `version` outputs) (#695)
79
- `install.sh` sha256 checksum verification via `BASHUNIT_VERIFY_CHECKSUM=true`, validating the download against the release `checksum` asset (#695)

bashunit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function _check_bash_version() {
2828
_check_bash_version
2929

3030
# shellcheck disable=SC2034
31-
declare -r BASHUNIT_VERSION="0.37.0"
31+
declare -r BASHUNIT_VERSION="0.38.0"
3232

3333
# shellcheck disable=SC2155
3434
declare -r BASHUNIT_ROOT_DIR="$(dirname "${BASH_SOURCE[0]}")"

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bashunit-docs",
3-
"version": "0.37.0",
3+
"version": "0.38.0",
44
"description": "Docs for bashunit a simple testing library for bash scripts",
55
"private": true,
66
"repository": "git@github.com:TypedDevs/bashunit.git",

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ elif [[ $# -eq 2 ]]; then
148148
fi
149149

150150
BASHUNIT_GIT_REPO="https://github.com/TypedDevs/bashunit"
151-
LATEST_BASHUNIT_VERSION="0.37.0"
151+
LATEST_BASHUNIT_VERSION="0.38.0"
152152
TAG="$LATEST_BASHUNIT_VERSION"
153153

154154
cd "$(dirname "$0")"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bashunit",
3-
"version": "0.37.0",
4-
"checksum": "18f1e8354213001b80e37c722b8520ebe26ce10fce11cb20ee471ddc96a21b11",
3+
"version": "0.38.0",
4+
"checksum": "b1364d4874e61bc8cee4d9dea15844badebdbcc855d4d5b5439c9f4ae8b2204c",
55
"description": "A simple testing library for bash scripts.",
66
"homepage": "https://bashunit.typeddevs.com",
77
"repository": {

0 commit comments

Comments
 (0)