diff --git a/CHANGELOG.md b/CHANGELOG.md index dcec30c6..bfe54d52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.26.0 = 2023-06-10 - Only rewrite checksum files in `.task` if the checksum has changed (#1185, #1194 by @deviantintegral). diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 42cd1eeb..a311c015 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,6 +5,22 @@ sidebar_position: 9 # Changelog +## v3.26.0 = 2023-06-10 + +- Only rewrite checksum files in `.task` if the checksum has changed ([#1185](https://github.com/go-task/task/issues/1185), + [#1194](https://github.com/go-task/task/issues/1194) by [@deviantintegral](https://github.com/deviantintegral)). +- Added [experiments documentation](https://taskfile.dev/experiments) to the + website ([#1198](https://github.com/go-task/task/issues/1198) by [@pd93](https://github.com/pd93)). +- Deprecated `version: 2` schema. This will be removed in the next major release + ([#1197](https://github.com/go-task/task/issues/1197), [#1198](https://github.com/go-task/task/issues/1198), [#1199](https://github.com/go-task/task/issues/1199) by [@pd93](https://github.com/pd93)). +- Added a new `prompt:` prop to set a warning prompt to be shown before running + a potential dangurous task ([#100](https://github.com/go-task/task/issues/100), [#1163](https://github.com/go-task/task/issues/1163) by [@MaxCheetham](https://github.com/MaxCheetham), + [Documentation](https://taskfile.dev/usage/#warning-prompts)). +- Added support for single command task syntax. With this change, it's now + possible to declare just `cmd:` in a task, avoiding the more complex + `cmds: []` when you have only a single command for that task + ([#1130](https://github.com/go-task/task/issues/1130), [#1131](https://github.com/go-task/task/issues/1131) by [@timdp](https://github.com/timdp)). + ## v3.25.0 - 2023-05-22 - Support `silent:` when calling another tasks ([#680](https://github.com/go-task/task/issues/680), [#1142](https://github.com/go-task/task/issues/1142) by [@danquah](https://github.com/danquah)). @@ -16,7 +32,8 @@ sidebar_position: 9 - Fix some errors being unintendedly supressed ([#1134](https://github.com/go-task/task/issues/1134) by [@clintmod](https://github.com/clintmod)). - Fix a nil pointer error when `version` is omitted from a Taskfile ([#1148](https://github.com/go-task/task/issues/1148), [#1149](https://github.com/go-task/task/issues/1149) by [@pd93](https://github.com/pd93)). -- Fix duplicate error message when a task does not exists ([#1141](https://github.com/go-task/task/issues/1141), [#1144](https://github.com/go-task/task/issues/1144) by [@pd93](https://github.com/pd93)). +- Fix duplicate error message when a task does not exists ([#1141](https://github.com/go-task/task/issues/1141), [#1144](https://github.com/go-task/task/issues/1144) by + [@pd93](https://github.com/pd93)). ## v3.24.0 - 2023-04-15 diff --git a/package-lock.json b/package-lock.json index 62410bcb..c780be5f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.25.0", + "version": "3.26.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index a81b36ae..9afc24ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.25.0", + "version": "3.26.0", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",