From 35599af04be4cb5a099f00707ea8d9547ec9576e Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 12 Nov 2022 13:36:52 -0300 Subject: [PATCH] v3.18.0 --- CHANGELOG.md | 2 +- docs/docs/changelog.md | 12 ++++++++++++ package.json | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be6ca04a..85d9436d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.18.0 - Show aliases on `task --list --silent` (`task --ls`). This means that aliases will be completed by the completion scripts diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index eb79774a..e4ced55a 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,6 +5,18 @@ sidebar_position: 6 # 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 - Add a "Did you mean ...?" suggestion when a task does not exits another one diff --git a/package.json b/package.json index 73d7805a..9b92bebe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.17.0", + "version": "3.18.0", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",