Skip to content

Commit f91a50f

Browse files
committed
release: 0.39.0
1 parent c8463bf commit f91a50f

6 files changed

Lines changed: 8 additions & 6 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.39.0](https://github.com/TypedDevs/bashunit/compare/0.38.0...0.39.0) - 2026-06-09
6+
57
### Added
68
- GitHub Action `args` input: when set, runs `bashunit <args>` after installing, so a workflow can install and run the suite in a single step
79
- Floating major tag for the GitHub Action: the release process now force-moves `v0` to each release, so workflows can pin `TypedDevs/bashunit@v0` to track the latest release within a major (#700)

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
version:
1111
description: 'bashunit version to install (e.g. "0.37.0"). Defaults to the version pinned at this action ref. Pass "latest" to override.'
1212
required: false
13-
default: '0.38.0'
13+
default: '0.39.0'
1414
directory:
1515
description: 'Directory, relative to the workspace, where the bashunit binary is installed.'
1616
required: false

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.38.0"
31+
declare -r BASHUNIT_VERSION="0.39.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.38.0",
3+
"version": "0.39.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
@@ -169,7 +169,7 @@ elif [[ $# -eq 2 ]]; then
169169
fi
170170

171171
BASHUNIT_GIT_REPO="https://github.com/TypedDevs/bashunit"
172-
LATEST_BASHUNIT_VERSION="0.38.0"
172+
LATEST_BASHUNIT_VERSION="0.39.0"
173173
TAG="$LATEST_BASHUNIT_VERSION"
174174

175175
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.38.0",
4-
"checksum": "b1364d4874e61bc8cee4d9dea15844badebdbcc855d4d5b5439c9f4ae8b2204c",
3+
"version": "0.39.0",
4+
"checksum": "37c228533b5e565147b4daaadfb2a1fe5227aa268de7dc41dd967fa85cab288f",
55
"description": "A simple testing library for bash scripts.",
66
"homepage": "https://bashunit.typeddevs.com",
77
"repository": {

0 commit comments

Comments
 (0)