diff --git a/CHANGELOG.md b/CHANGELOG.md index 476e98f9..ae158ecc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.22.0 - 2023-03-10 - Add a brand new `--global` (`-g`) flag that will run a Taskfile from your `$HOME` directory. This is useful to have automation that you can run from diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 91090e3d..cf96b62a 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,6 +5,23 @@ sidebar_position: 7 # Changelog +## v3.22.0 - 2023-03-10 + +- Add a brand new `--global` (`-g`) flag that will run a Taskfile from your + `$HOME` directory. This is useful to have automation that you can run from + anywhere in your system! + ([Documentation](https://taskfile.dev/usage/#running-a-global-taskfile), [#1029](https://github.com/go-task/task/pull/1029) by @andreynering). +- Add ability to set `error_only: true` on the `group` output mode. This will + instruct Task to only print a command output if it returned with a non-zero + exit code + ([#664](https://github.com/go-task/task/issues/664), [#1022](https://github.com/go-task/task/pull/1022) by @jaedle). +- Fixed bug where `.task/checksum` file was sometimes not being created when + task also declares a `status:` + ([#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). +- Refactored and decoupled fingerprinting from the main Task executor ([#1039](https://github.com/go-task/task/issues/1039) by @pd93). +- Fixed deadlock issue when using `run: once` + ([#715](https://github.com/go-task/task/issues/715), [#1025](https://github.com/go-task/task/pull/1025) by @theunrepentantgeek). + ## v3.21.0 - 2023-02-22 - Added new `TASK_VERSION` special variable diff --git a/package-lock.json b/package-lock.json index e11857d6..e1926b37 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@go-task/cli", - "version": "3.21.0", + "version": "3.22.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@go-task/cli", - "version": "3.21.0", + "version": "3.22.0", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 96d2ab97..e2841524 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.21.0", + "version": "3.22.0", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",