Skip to content

Commit 3eb4c9e

Browse files
committed
v3.22.0
1 parent 0838d48 commit 3eb4c9e

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## v3.22.0 - 2023-03-10
44

55
- Add a brand new `--global` (`-g`) flag that will run a Taskfile from your
66
`$HOME` directory. This is useful to have automation that you can run from

docs/docs/changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ sidebar_position: 7
55

66
# Changelog
77

8+
## v3.22.0 - 2023-03-10
9+
10+
- Add a brand new `--global` (`-g`) flag that will run a Taskfile from your
11+
`$HOME` directory. This is useful to have automation that you can run from
12+
anywhere in your system!
13+
([Documentation](https://taskfile.dev/usage/#running-a-global-taskfile), [#1029](https://github.com/go-task/task/pull/1029) by @andreynering).
14+
- Add ability to set `error_only: true` on the `group` output mode. This will
15+
instruct Task to only print a command output if it returned with a non-zero
16+
exit code
17+
([#664](https://github.com/go-task/task/issues/664), [#1022](https://github.com/go-task/task/pull/1022) by @jaedle).
18+
- Fixed bug where `.task/checksum` file was sometimes not being created when
19+
task also declares a `status:`
20+
([#840](https://github.com/go-task/task/issues/840), [#1035](https://github.com/go-task/task/pull/1035) by @harelwa, [#1037](https://github.com/go-task/task/pull/1037) by @pd93).
21+
- Refactored and decoupled fingerprinting from the main Task executor ([#1039](https://github.com/go-task/task/issues/1039) by @pd93).
22+
- Fixed deadlock issue when using `run: once`
23+
([#715](https://github.com/go-task/task/issues/715), [#1025](https://github.com/go-task/task/pull/1025) by @theunrepentantgeek).
24+
825
## v3.21.0 - 2023-02-22
926

1027
- Added new `TASK_VERSION` special variable

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@go-task/cli",
3-
"version": "3.21.0",
3+
"version": "3.22.0",
44
"description": "A task runner / simpler Make alternative written in Go",
55
"scripts": {
66
"postinstall": "go-npm install",

0 commit comments

Comments
 (0)