Skip to content

Commit ae38843

Browse files
committed
v3.26.0
1 parent 6cc8d60 commit ae38843

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## v3.26.0 = 2023-06-10
44

55
- Only rewrite checksum files in `.task` if the checksum has changed (#1185,
66
#1194 by @deviantintegral).

docs/docs/changelog.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ sidebar_position: 9
55

66
# Changelog
77

8+
## v3.26.0 = 2023-06-10
9+
10+
- Only rewrite checksum files in `.task` if the checksum has changed ([#1185](https://github.com/go-task/task/issues/1185),
11+
[#1194](https://github.com/go-task/task/issues/1194) by [@deviantintegral](https://github.com/deviantintegral)).
12+
- Added [experiments documentation](https://taskfile.dev/experiments) to the
13+
website ([#1198](https://github.com/go-task/task/issues/1198) by [@pd93](https://github.com/pd93)).
14+
- Deprecated `version: 2` schema. This will be removed in the next major release
15+
([#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)).
16+
- Added a new `prompt:` prop to set a warning prompt to be shown before running
17+
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),
18+
[Documentation](https://taskfile.dev/usage/#warning-prompts)).
19+
- Added support for single command task syntax. With this change, it's now
20+
possible to declare just `cmd:` in a task, avoiding the more complex
21+
`cmds: []` when you have only a single command for that task
22+
([#1130](https://github.com/go-task/task/issues/1130), [#1131](https://github.com/go-task/task/issues/1131) by [@timdp](https://github.com/timdp)).
23+
824
## v3.25.0 - 2023-05-22
925

1026
- 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
1632
- Fix some errors being unintendedly supressed ([#1134](https://github.com/go-task/task/issues/1134) by [@clintmod](https://github.com/clintmod)).
1733
- Fix a nil pointer error when `version` is omitted from a Taskfile ([#1148](https://github.com/go-task/task/issues/1148),
1834
[#1149](https://github.com/go-task/task/issues/1149) by [@pd93](https://github.com/pd93)).
19-
- 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)).
35+
- 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
36+
[@pd93](https://github.com/pd93)).
2037

2138
## v3.24.0 - 2023-04-15
2239

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@go-task/cli",
3-
"version": "3.25.0",
3+
"version": "3.26.0",
44
"description": "A task runner / simpler Make alternative written in Go",
55
"scripts": {
66
"postinstall": "go-npm install",

0 commit comments

Comments
 (0)