diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f986e09..99a556f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v3.27.1 - 2023-06-30 + +- Fix panic when a `.env` directory (not file) is present on current directory + (#1244, #1245 by @pd93). + ## v3.27.0 - 2023-06-29 - Allow Taskfiles starting with lowercase characters (#947, #1221 by @pd93). diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 0e045e43..57cf8b4c 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,6 +5,11 @@ sidebar_position: 9 # Changelog +## v3.27.1 - 2023-06-30 + +- Fix panic when a `.env` directory (not file) is present on current directory + ([#1244](https://github.com/go-task/task/issues/1244), [#1245](https://github.com/go-task/task/issues/1245) by [@pd93](https://github.com/pd93)). + ## v3.27.0 - 2023-06-29 - Allow Taskfiles starting with lowercase characters ([#947](https://github.com/go-task/task/issues/947), [#1221](https://github.com/go-task/task/issues/1221) by [@pd93](https://github.com/pd93)). diff --git a/package-lock.json b/package-lock.json index b8d03365..5f356244 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.27.0", + "version": "3.27.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 44f26224..3ae68acf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.27.0", + "version": "3.27.1", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",