From 58275b4b33ab980bf1ddd4546a939a677adfb17d Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Thu, 21 Dec 2023 20:10:41 -0300 Subject: [PATCH] v3.33.1 --- CHANGELOG.md | 2 +- cmd/release/main.go | 2 +- docs/docs/changelog.md | 10 +++++++++- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a02cb619..7c2b75f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.33.1 - 2023-12-21 - Added support for looping over map variables with the [Any Variables experiment](https://taskfile.dev/experiments/any_variables) diff --git a/cmd/release/main.go b/cmd/release/main.go index e3233336..f589b27e 100644 --- a/cmd/release/main.go +++ b/cmd/release/main.go @@ -14,7 +14,7 @@ import ( const ( changelogSource = "CHANGELOG.md" - changelogTarget = "docs/docs/changelog.mdx" + changelogTarget = "docs/docs/changelog.md" ) var ( diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 5fd72e45..da946b19 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,10 +5,18 @@ sidebar_position: 14 # Changelog +## v3.33.1 - 2023-12-21 + +- Added support for looping over map variables with the + [Any Variables experiment](https://taskfile.dev/experiments/any_variables) + enabled (#1435, #1437 by @pd93). +- Fixed a bug where dynamic variables were causing errors during fast + compilation (#1435, #1437 by @pd93) + ## v3.33.0 - 2023-12-20 - Added - [Any Variables experiment](https://taskfile.dev/experiments/any_variables) + [Any Variables experiment](https://taskfile.dev/experiments/any-variables) (#1415, #1421 by @pd93). - Updated Docusaurus to v3 (#1432 by @pd93). - Added `aliases` to `--json` flag output (#1430, #1431 by @pd93). diff --git a/package-lock.json b/package-lock.json index da1601ab..42e073a9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.33.0", + "version": "3.33.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 096a80dc..546ea24a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.33.0", + "version": "3.33.1", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",