From d6b7d532edf0eac2015877701646c49f0f139832 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Thu, 29 Jun 2023 22:44:02 -0300 Subject: [PATCH] v3.27.0 --- CHANGELOG.md | 2 +- docs/docs/changelog.md | 19 +++++++++++++++++-- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce9fd99e..4f986e09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.27.0 - 2023-06-29 - Allow Taskfiles starting with lowercase characters (#947, #1221 by @pd93). - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index dfe939c3..0e045e43 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,6 +5,21 @@ sidebar_position: 9 # Changelog +## 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)). + - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & + `taskfile.dist.yaml` +- Bug fixes were made to the + [npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by + [@sounisi5011](https://github.com/sounisi5011)). +- Added the [gentle force experiment](https://taskfile.dev/experiments) as a + draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). +- Added an `--experiments` flag to allow you to see which experiments are + enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)). +- Added ability to specify which variables are required in a task ([#1203](https://github.com/go-task/task/issues/1203), [#1204](https://github.com/go-task/task/issues/1204) + by [@benc](https://github.com/benc)-uk). + ## v3.26.0 - 2023-06-10 - Only rewrite checksum files in `.task` if the checksum has changed ([#1185](https://github.com/go-task/task/issues/1185), @@ -18,8 +33,8 @@ sidebar_position: 9 [Documentation](https://taskfile.dev/usage/#warning-prompts)). - Added support for single command task syntax. With this change, it's now possible to declare just `cmd:` in a task, avoiding the more complex - `cmds: []` when you have only a single command for that task - ([#1130](https://github.com/go-task/task/issues/1130), [#1131](https://github.com/go-task/task/issues/1131) by [@timdp](https://github.com/timdp)). + `cmds: []` when you have only a single command for that task ([#1130](https://github.com/go-task/task/issues/1130), [#1131](https://github.com/go-task/task/issues/1131) by + [@timdp](https://github.com/timdp)). ## v3.25.0 - 2023-05-22 diff --git a/package-lock.json b/package-lock.json index 4a8adbfa..b8d03365 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.26.0", + "version": "3.27.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 5e295801..44f26224 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.26.0", + "version": "3.27.0", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",