Skip to content

Commit 42ac242

Browse files
committed
release: v3.30.0
1 parent d055135 commit 42ac242

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
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.30.0 - 2023-09-13
44

55
- Prep work for Remote Taskfiles (#1316 by @pd93).
66
- Added the

cmd/release/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const (
1919

2020
const changelogTemplate = `---
2121
slug: /changelog/
22-
sidebar_position: 9
22+
sidebar_position: 14
2323
---`
2424

2525
var (

docs/docs/changelog.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ sidebar_position: 14
55

66
# Changelog
77

8+
## v3.30.0 - 2023-09-13
9+
10+
- Prep work for Remote Taskfiles ([#1316](https://github.com/go-task/task/issues/1316) by [@pd93](https://github.com/pd93)).
11+
- Added the
12+
[Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles)
13+
as a draft ([#1152](https://github.com/go-task/task/issues/1152), [#1317](https://github.com/go-task/task/issues/1317) by [@pd93](https://github.com/pd93)).
14+
- Improve performance of content checksuming on `sources:` by replacing md5 with
15+
[XXH3](https://xxhash.com/) which is much faster. This is a soft breaking
16+
change because checksums will be invalidated when upgrading to this release
17+
([#1325](https://github.com/go-task/task/issues/1325) by [@ReillyBrogan](https://github.com/ReillyBrogan)).
18+
819
## v3.29.1 - 2023-08-26
920

1021
- Update to Go 1.21 (bump minimum version to 1.20) ([#1302](https://github.com/go-task/task/issues/1302) by [@pd93](https://github.com/pd93))
@@ -14,8 +25,8 @@ sidebar_position: 14
1425
- Fix bug in usage of special variables like `{{.USER_WORKING_DIR}}` in
1526
combination with `includes` ([#1046](https://github.com/go-task/task/issues/1046), [#1205](https://github.com/go-task/task/issues/1205), [#1250](https://github.com/go-task/task/issues/1250), [#1293](https://github.com/go-task/task/issues/1293), [#1312](https://github.com/go-task/task/issues/1312), [#1274](https://github.com/go-task/task/issues/1274) by
1627
[@andarto](https://github.com/andarto), [#1309](https://github.com/go-task/task/issues/1309) by [@andreynering](https://github.com/andreynering)).
17-
- Fix bug on `--status` flag. Running this flag should not have side-effects:
18-
it should not update the checksum on `.task`, only report its status ([#1305](https://github.com/go-task/task/issues/1305),
28+
- Fix bug on `--status` flag. Running this flag should not have side-effects: it
29+
should not update the checksum on `.task`, only report its status ([#1305](https://github.com/go-task/task/issues/1305),
1930
[#1307](https://github.com/go-task/task/issues/1307) by [@visciang](https://github.com/visciang), [#1313](https://github.com/go-task/task/issues/1313) by [@andreynering](https://github.com/andreynering)).
2031

2132
## v3.28.0 - 2023-07-24
@@ -43,7 +54,8 @@ sidebar_position: 14
4354
- Bug fixes were made to the
4455
[npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by
4556
[@sounisi5011](https://github.com/sounisi5011)).
46-
- Added the [gentle force experiment](https://taskfile.dev/experiments) as a
57+
- Added the
58+
[gentle force experiment](https://taskfile.dev/experiments/gentle-force) as a
4759
draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)).
4860
- Added an `--experiments` flag to allow you to see which experiments are
4961
enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)).

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.29.1",
3+
"version": "3.30.0",
44
"description": "A task runner / simpler Make alternative written in Go",
55
"scripts": {
66
"postinstall": "go-npm install",

0 commit comments

Comments
 (0)