Skip to content

Commit b4c95d6

Browse files
committed
v3.19.1
1 parent c4766e2 commit b4c95d6

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changelog
22

3-
## Unreleased
3+
## v3.19.1 - 2022-12-31
44

5-
- Small bug fix: closing "Taskfile.yml" once we're done reading it
5+
- Small bug fix: closing `Taskfile.yml` once we're done reading it
66
([#963](https://github.com/go-task/task/issues/963), [#964](https://github.com/go-task/task/pull/964) by @HeCorr).
77
- Fixes a bug in v2 that caused a panic when using a `Taskfile_{{OS}}.yml` file
88
([#961](https://github.com/go-task/task/issues/961), [#971](https://github.com/go-task/task/pull/971) by @pd93).

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ tasks:
9393
- rm {{.FILE}}
9494
- 'echo "---" >> {{.FILE}}'
9595
- 'echo "slug: /changelog/" >> {{.FILE}}'
96-
- 'echo "sidebar_position: 6" >> {{.FILE}}'
96+
- 'echo "sidebar_position: 7" >> {{.FILE}}'
9797
- 'echo "---" >> {{.FILE}}'
9898
- 'echo "" >> {{.FILE}}'
9999
- 'cat CHANGELOG.md >> {{.FILE}}'

docs/docs/changelog.md

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

66
# Changelog
77

8+
## v3.19.1 - 2022-12-31
9+
10+
- Small bug fix: closing `Taskfile.yml` once we're done reading it
11+
([#963](https://github.com/go-task/task/issues/963), [#964](https://github.com/go-task/task/pull/964) by @HeCorr).
12+
- Fixes a bug in v2 that caused a panic when using a `Taskfile_{{OS}}.yml` file
13+
([#961](https://github.com/go-task/task/issues/961), [#971](https://github.com/go-task/task/pull/971) by @pd93).
14+
- Fixed a bug where watch intervals set in the Taskfile were not being respected ([#969](https://github.com/go-task/task/pull/969), [#970](https://github.com/go-task/task/pull/970) by @pd93)
15+
- Add `--json` flag (alias `-j`) with the intent to improve support for code
16+
editors and add room to other possible integrations. This is basic for now,
17+
but we plan to add more info in the near future
18+
([#936](https://github.com/go-task/task/pull/936) by @davidalpert, [#764](https://github.com/go-task/task/issues/764)).
19+
820
## v3.19.0 - 2022-12-05
921

1022
- Installation via npm now supports [pnpm](https://pnpm.io/) as well

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

0 commit comments

Comments
 (0)