Skip to content

Commit d527e71

Browse files
committed
prepare release v2.3.3
1 parent a308f1a commit d527e71

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

bash_unit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# shellcheck disable=2317 # Ignore unreachable - most function are not called.
2020
# shellcheck disable=2155 # Ignore Declare and assign separately
2121

22-
VERSION=v2.3.2
22+
VERSION=v2.3.3
2323

2424
ESCAPE=$(printf "\033")
2525
NOCOLOR="${ESCAPE}[0m"

docs/man/man1/bash_unit.1

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
.\" Title: bash_unit
33
.\" Author: [see the "AUTHOR(S)" section]
44
.\" Generator: Asciidoctor 2.0.23
5-
.\" Date: 2025-01-08
5+
.\" Date: 2025-07-02
66
.\" Manual: \ \&
77
.\" Source: \ \&
88
.\" Language: English
99
.\"
10-
.TH "BASH_UNIT" "1" "2025-01-08" "\ \&" "\ \&"
10+
.TH "BASH_UNIT" "1" "2025-07-02" "\ \&" "\ \&"
1111
.ie \n(.g .ds Aq \(aq
1212
.el .ds Aq '
1313
.ss \n[.ss] 0
@@ -38,9 +38,10 @@ bash_unit \- bash unit testing enterprise edition framework for professionals!
3838
run them and, in case of failure, displays the stack trace
3939
with source file and line number indications to locate the problem.
4040
.sp
41-
You might want to take a look at \c
42-
.URL "getting_started" "how to get started"
43-
before continuing reading this documentation.
41+
Need a quick start? The
42+
\c
43+
.URL "https://github.com/bash\-unit/getting_started/" "getting started project"
44+
will help you get on track in no time.
4445
.sp
4546
The following functions are available in your tests (see below for detailed documentation):
4647
.sp
@@ -240,14 +241,14 @@ jobs:
240241
\- uses: actions/checkout@v4
241242
\- name: Unit testing with bash_unit
242243
run: |
243-
curl \-s https://raw.githubusercontent.com/bash-unit/bash_unit/master/install.sh | bash
244+
curl \-s https://raw.githubusercontent.com/bash\-unit/bash_unit/master/install.sh | bash
244245
FORCE_COLOR=true ./bash_unit tests/test_*
245246
.fam
246247
.fi
247248
.if n .RE
248249
.sp
249250
See this bash_unit \c
250-
.URL "https://github.com/pgrange/bash_unit_getting_started" "getting started gitlab project" ""
251+
.URL "https://github.com/pgrange/bash_unit_getting_started" "getting started github project" ""
251252
for a working example.
252253
.SS "GitLab CI"
253254
.sp
@@ -262,7 +263,7 @@ test:
262263
script:
263264
\- apt\-get update
264265
\- apt\-get install \-\-no\-install\-recommends \-y curl ca\-certificates
265-
\- curl \-s https://raw.githubusercontent.com/bash-unit/bash_unit/master/install.sh | bash
266+
\- curl \-s https://raw.githubusercontent.com/bash\-unit/bash_unit/master/install.sh | bash
266267
\- FORCE_COLOR=true ./bash_unit tests/test_*
267268
.fam
268269
.fi
@@ -283,7 +284,7 @@ Add the following to your pre\-commit configuration. By default it will run scri
283284
.nf
284285
.fam C
285286
repos:
286-
\- repo: https://github.com/bash-unit/bash_unit
287+
\- repo: https://github.com/bash\-unit/bash_unit
287288
rev: v2.2.0
288289
hooks:
289290
\- id: bash\-unit
@@ -495,7 +496,7 @@ your file is a bash script and \fBbash_unit\fP sources it before running your te
495496
\fBsetup_suite\fP function and avoid any code outside a bash function. you must not use any bash_unit assertion
496497
in setup_suite or use exit in setup_suite for teardown_suite to be run.
497498
See \c
498-
.URL "https://github.com/bash-unit/bash_unit/issues/43" "issue 43" ""
499+
.URL "https://github.com/bash\-unit/bash_unit/issues/43" "issue 43" ""
499500
for more details.
500501
.sp
501502
If you want to keep an eye on a test not yet implemented, prefix the name of the function by \fBtodo\fP instead of test.

0 commit comments

Comments
 (0)