Skip to content

Commit 73aba36

Browse files
committed
v3.20.0
1 parent cb393cc commit 73aba36

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.20.0 - 2023-01-14
44

55
- Improve behavior and performance of status checking when using the
66
`timestamp` mode

docs/docs/changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ sidebar_position: 7
55

66
# Changelog
77

8+
## v3.20.0 - 2023-01-14
9+
10+
- Improve behavior and performance of status checking when using the
11+
`timestamp` mode
12+
([#976](https://github.com/go-task/task/issues/976), [#977](https://github.com/go-task/task/pull/977) by @aminya).
13+
- Performance optimizations were made for large Taskfiles
14+
([#982](https://github.com/go-task/task/pull/982) by @pd93).
15+
- Add ability to configure options for the [`set`](https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html)
16+
and [`shopt`](https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html) builtins
17+
([#908](https://github.com/go-task/task/issues/908), [#929](https://github.com/go-task/task/pull/929) by @pd93, [Documentation](http://taskfile.dev/usage/#set-and-shopt)).
18+
- Add new `platforms:` attribute to `task` and `cmd`, so it's now possible to
19+
choose in which platforms that given task or command will be run on. Possible
20+
values are operating system (GOOS), architecture (GOARCH) or a combination of
21+
the two. Example: `platforms: [linux]`, `platforms: [amd64]` or
22+
`platforms: [linux/amd64]`. Other platforms will be skipped
23+
([#978](https://github.com/go-task/task/issues/978), [#980](https://github.com/go-task/task/pull/980) by @leaanthony).
24+
825
## v3.19.1 - 2022-12-31
926

1027
- Small bug fix: closing `Taskfile.yml` once we're done reading it

package-lock.json

Lines changed: 2 additions & 2 deletions
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.19.1",
3+
"version": "3.20.0",
44
"description": "A task runner / simpler Make alternative written in Go",
55
"scripts": {
66
"postinstall": "go-npm install",

0 commit comments

Comments
 (0)