diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d7146fde3..e03e92af30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 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). diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 07bd2ec9c3..91090e3dfa 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,6 +5,14 @@ sidebar_position: 7 # 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 - Improve behavior and performance of status checking when using the diff --git a/package-lock.json b/package-lock.json index 667eab542f..e11857d617 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@go-task/cli", - "version": "3.20.0", + "version": "3.21.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@go-task/cli", - "version": "3.20.0", + "version": "3.21.0", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index ccfd67c6db..96d2ab97fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.20.0", + "version": "3.21.0", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",