diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a4371fc..080632c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.19.0 - 2022-12-05 - Installation via npm now supports [pnpm](https://pnpm.io/) as well ([go-task/go-npm#2](https://github.com/go-task/go-npm/issues/2), [go-task/go-npm#3](https://github.com/go-task/go-npm/pull/3)). @@ -14,7 +14,7 @@ - The website got a brand new [translation to Chinese](https://task-zh.readthedocs.io/zh_CN/latest/) by [@DeronW](https://github.com/DeronW). Thanks! -## v3.18.0 +## v3.18.0 - 2022-11-12 - Show aliases on `task --list --silent` (`task --ls`). This means that aliases will be completed by the completion scripts @@ -26,7 +26,7 @@ aliased to `docs` ([#661](https://github.com/go-task/task/issues/661), [#815](https://github.com/go-task/task/pull/815)). -## v3.17.0 +## v3.17.0 - 2022-10-14 - Add a "Did you mean ...?" suggestion when a task does not exits another one with a similar name is found diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index e4ced55a..f8ebd2c0 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,7 +5,21 @@ sidebar_position: 6 # Changelog -## v3.18.0 +## v3.19.0 - 2022-12-05 + +- Installation via npm now supports [pnpm](https://pnpm.io/) as well + ([go-task/go-npm#2](https://github.com/go-task/go-npm/issues/2), [go-task/go-npm#3](https://github.com/go-task/go-npm/pull/3)). +- It's now possible to run Taskfiles from subdirectories! A new `USER_WORKING_DIR` special + variable was added to add even more flexibility for monorepos + ([#289](https://github.com/go-task/task/issues/289), [#920](https://github.com/go-task/task/pull/920)). +- Add task-level `dotenv` support + ([#389](https://github.com/go-task/task/issues/389), [#904](https://github.com/go-task/task/pull/904)). +- It's now possible to use global level variables on `includes` + ([#942](https://github.com/go-task/task/issues/942), [#943](https://github.com/go-task/task/pull/943)). +- The website got a brand new [translation to Chinese](https://task-zh.readthedocs.io/zh_CN/latest/) + by [@DeronW](https://github.com/DeronW). Thanks! + +## v3.18.0 - 2022-11-12 - Show aliases on `task --list --silent` (`task --ls`). This means that aliases will be completed by the completion scripts @@ -17,7 +31,7 @@ sidebar_position: 6 aliased to `docs` ([#661](https://github.com/go-task/task/issues/661), [#815](https://github.com/go-task/task/pull/815)). -## v3.17.0 +## v3.17.0 - 2022-10-14 - Add a "Did you mean ...?" suggestion when a task does not exits another one with a similar name is found diff --git a/package-lock.json b/package-lock.json index dd4becde..6e66de59 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@go-task/cli", - "version": "3.18.0", + "version": "3.19.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@go-task/cli", - "version": "3.18.0", + "version": "3.19.0", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index f81a7d15..3e1a53a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.18.0", + "version": "3.19.0", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",