diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d377c9f..d58639a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.17.0 - Add a "Did you mean ...?" suggestion when a task does not exits another one with a similar name is found diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 6b8cdabc..eb79774a 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,6 +5,24 @@ sidebar_position: 6 # Changelog +## v3.17.0 + +- Add a "Did you mean ...?" suggestion when a task does not exits another one + with a similar name is found + ([#867](https://github.com/go-task/task/issues/867), [#880](https://github.com/go-task/task/pull/880)). +- Now YAML parse errors will print which Taskfile failed to parse + ([#885](https://github.com/go-task/task/issues/885), [#887](https://github.com/go-task/task/pull/887)). +- Add ability to set `aliases` for tasks and namespaces ([#268](https://github.com/go-task/task/pull/268), [#340](https://github.com/go-task/task/pull/340), [#879](https://github.com/go-task/task/pull/879)). +- Improvements to Fish shell completion + ([#897](https://github.com/go-task/task/pull/897)). +- Added ability to set a different watch interval by setting + `interval: '500ms'` or using the `--interval=500ms` flag + ([#813](https://github.com/go-task/task/issues/813), [#865](https://github.com/go-task/task/pull/865)). +- Add colored output to `--list`, `--list-all` and `--summary` flags ([#845](https://github.com/go-task/task/pull/845), [#874](https://github.com/go-task/task/pull/874)). +- Fix unexpected behavior where `label:` was being shown instead of the task + name on `--list` + ([#603](https://github.com/go-task/task/issues/603), [#877](https://github.com/go-task/task/pull/877)). + ## v3.16.0 - 2022-09-29 - Add `npm` as new installation method: `npm i -g @go-task/cli` diff --git a/package-lock.json b/package-lock.json index 5b32537d..aceab9a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@go-task/cli", - "version": "3.16.0", + "version": "3.17.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@go-task/cli", - "version": "3.16.0", + "version": "3.17.0", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 3ad2977a..73d7805a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.16.0", + "version": "3.17.0", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",