1
0
mirror of https://github.com/go-task/task.git synced 2025-02-03 13:22:11 +02:00
This commit is contained in:
Andrey Nering 2022-12-31 14:03:55 -03:00
parent c4766e2611
commit b4c95d6b0b
5 changed files with 18 additions and 6 deletions

View File

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

View File

@ -93,7 +93,7 @@ tasks:
- rm {{.FILE}} - rm {{.FILE}}
- 'echo "---" >> {{.FILE}}' - 'echo "---" >> {{.FILE}}'
- 'echo "slug: /changelog/" >> {{.FILE}}' - 'echo "slug: /changelog/" >> {{.FILE}}'
- 'echo "sidebar_position: 6" >> {{.FILE}}' - 'echo "sidebar_position: 7" >> {{.FILE}}'
- 'echo "---" >> {{.FILE}}' - 'echo "---" >> {{.FILE}}'
- 'echo "" >> {{.FILE}}' - 'echo "" >> {{.FILE}}'
- 'cat CHANGELOG.md >> {{.FILE}}' - 'cat CHANGELOG.md >> {{.FILE}}'

View File

@ -5,6 +5,18 @@ sidebar_position: 7
# Changelog # Changelog
## v3.19.1 - 2022-12-31
- Small bug fix: closing `Taskfile.yml` once we're done reading it
([#963](https://github.com/go-task/task/issues/963), [#964](https://github.com/go-task/task/pull/964) by @HeCorr).
- Fixes a bug in v2 that caused a panic when using a `Taskfile_{{OS}}.yml` file
([#961](https://github.com/go-task/task/issues/961), [#971](https://github.com/go-task/task/pull/971) by @pd93).
- 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)
- Add `--json` flag (alias `-j`) with the intent to improve support for code
editors and add room to other possible integrations. This is basic for now,
but we plan to add more info in the near future
([#936](https://github.com/go-task/task/pull/936) by @davidalpert, [#764](https://github.com/go-task/task/issues/764)).
## v3.19.0 - 2022-12-05 ## v3.19.0 - 2022-12-05
- Installation via npm now supports [pnpm](https://pnpm.io/) as well - Installation via npm now supports [pnpm](https://pnpm.io/) as well

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.19.0", "version": "3.19.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.19.0", "version": "3.19.1",
"hasInstallScript": true, "hasInstallScript": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.19.0", "version": "3.19.1",
"description": "A task runner / simpler Make alternative written in Go", "description": "A task runner / simpler Make alternative written in Go",
"scripts": { "scripts": {
"postinstall": "go-npm install", "postinstall": "go-npm install",