Skip to content

Commit ffa9c79

Browse files
committed
release: 0.39.1
1 parent 5422b13 commit ffa9c79

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.1](https://github.com/TypedDevs/bashunit/compare/0.39.0...0.39.1) - 2026-06-09
6+
57
### Fixed
68
- `bashunit upgrade` resolved the floating `v0` Action tag as the latest version, breaking upgrades; it now only considers exact-version tags
79

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.39.0'
13+
default: '0.39.1'
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.39.0"
31+
declare -r BASHUNIT_VERSION="0.39.1"
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.39.0",
3+
"version": "0.39.1",
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.39.0"
172+
LATEST_BASHUNIT_VERSION="0.39.1"
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.39.0",
4-
"checksum": "37c228533b5e565147b4daaadfb2a1fe5227aa268de7dc41dd967fa85cab288f",
3+
"version": "0.39.1",
4+
"checksum": "0cb0153ebcf7198371051332b8e8fce36c47b514eef9bb362148f404837c2e82",
55
"description": "A simple testing library for bash scripts.",
66
"homepage": "https://bashunit.typeddevs.com",
77
"repository": {

0 commit comments

Comments
 (0)