1
0
mirror of https://github.com/go-task/task.git synced 2025-04-23 12:18:57 +02:00
This commit is contained in:
Andrey Nering 2023-02-22 22:12:48 -03:00
parent ec2110e58f
commit 1920ee38c3
4 changed files with 12 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Changelog # Changelog
## Unreleased ## v3.21.0 - 2023-02-22
- Added new `TASK_VERSION` special variable - Added new `TASK_VERSION` special variable
([#990](https://github.com/go-task/task/issues/990), [#1014](https://github.com/go-task/task/pull/1014) by @ja1code). ([#990](https://github.com/go-task/task/issues/990), [#1014](https://github.com/go-task/task/pull/1014) by @ja1code).

View File

@ -5,6 +5,14 @@ sidebar_position: 7
# Changelog # Changelog
## v3.21.0 - 2023-02-22
- Added new `TASK_VERSION` special variable
([#990](https://github.com/go-task/task/issues/990), [#1014](https://github.com/go-task/task/pull/1014) by @ja1code).
- Fixed a bug where tasks were sometimes incorrectly marked as internal ([#1007](https://github.com/go-task/task/pull/1007) by @pd93).
- Update to Go 1.20 (bump minimum version to 1.19) ([#1010](https://github.com/go-task/task/pull/1010) by @pd93)
- Added environment variable `FORCE_COLOR` support to force color output. Usefull for environments without TTY ([#1003](https://github.com/go-task/task/pull/1003) by @automation-stack)
## v3.20.0 - 2023-01-14 ## v3.20.0 - 2023-01-14
- Improve behavior and performance of status checking when using the - Improve behavior and performance of status checking when using the

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.20.0", "version": "3.21.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.20.0", "version": "3.21.0",
"hasInstallScript": true, "hasInstallScript": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.20.0", "version": "3.21.0",
"description": "A task runner / simpler Make alternative written in Go", "description": "A task runner / simpler Make alternative written in Go",
"scripts": { "scripts": {
"postinstall": "go-npm install", "postinstall": "go-npm install",