From b4c95d6b0b61368487f1a59f6e5af609296b135e Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 31 Dec 2022 14:03:55 -0300 Subject: [PATCH] v3.19.1 --- CHANGELOG.md | 4 ++-- Taskfile.yml | 2 +- docs/docs/changelog.md | 12 ++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 302303d5..3bc3697d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # 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). - 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). diff --git a/Taskfile.yml b/Taskfile.yml index 45b21b09..5b7fa22e 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -93,7 +93,7 @@ tasks: - rm {{.FILE}} - 'echo "---" >> {{.FILE}}' - 'echo "slug: /changelog/" >> {{.FILE}}' - - 'echo "sidebar_position: 6" >> {{.FILE}}' + - 'echo "sidebar_position: 7" >> {{.FILE}}' - 'echo "---" >> {{.FILE}}' - 'echo "" >> {{.FILE}}' - 'cat CHANGELOG.md >> {{.FILE}}' diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 5b714fa3..2229cb6c 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,6 +5,18 @@ sidebar_position: 7 # 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 - Installation via npm now supports [pnpm](https://pnpm.io/) as well diff --git a/package-lock.json b/package-lock.json index 6e66de59..c62fd833 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@go-task/cli", - "version": "3.19.0", + "version": "3.19.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@go-task/cli", - "version": "3.19.0", + "version": "3.19.1", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 3e1a53a3..4c768732 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.19.0", + "version": "3.19.1", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",