1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00
This commit is contained in:
Andrey Nering
2022-11-12 13:36:52 -03:00
parent a74b35379e
commit 35599af04b
3 changed files with 14 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# Changelog # Changelog
## Unreleased ## v3.18.0
- Show aliases on `task --list --silent` (`task --ls`). This means that aliases - Show aliases on `task --list --silent` (`task --ls`). This means that aliases
will be completed by the completion scripts will be completed by the completion scripts

View File

@@ -5,6 +5,18 @@ sidebar_position: 6
# Changelog # Changelog
## v3.18.0
- Show aliases on `task --list --silent` (`task --ls`). This means that aliases
will be completed by the completion scripts
([#919](https://github.com/go-task/task/pull/919)).
- Tasks in the root Taskfile will now be displayed first in `--list`/`--list-all`
output ([#806](https://github.com/go-task/task/pull/806), [#890](https://github.com/go-task/task/pull/890)).
- It's now possible to call a `default` task in an included Taskfile by using
just the namespace. For example: `docs:default` is now automatically
aliased to `docs`
([#661](https://github.com/go-task/task/issues/661), [#815](https://github.com/go-task/task/pull/815)).
## v3.17.0 ## v3.17.0
- Add a "Did you mean ...?" suggestion when a task does not exits another one - Add a "Did you mean ...?" suggestion when a task does not exits another one

View File

@@ -1,6 +1,6 @@
{ {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.17.0", "version": "3.18.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",