Skip to content

Commit 56f3735

Browse files
committed
v3.39.1
1 parent 23d578a commit 56f3735

File tree

6 files changed

+24
-4
lines changed

6 files changed

+24
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## v3.39.1 - 2024-09-18
44

55
- Added Renovate configuration to automatically create PRs to keep dependencies
66
up to date (#1783 by @vmaerten).

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@go-task/cli",
3-
"version": "3.39.0",
3+
"version": "3.39.1",
44
"description": "A task runner / simpler Make alternative written in Go",
55
"scripts": {
66
"postinstall": "go-npm install",

website/docs/changelog.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ sidebar_position: 14
55

66
# Changelog
77

8+
## v3.39.1 - 2024-09-18
9+
10+
- Added Renovate configuration to automatically create PRs to keep dependencies
11+
up to date (#1783 by @vmaerten).
12+
- Fixed a bug where the help was displayed twice (#1805, #1806 by @vmaerten).
13+
- Fixed a bug where ZSH and PowerShell completions did not work when using the
14+
recommended method. (#1813, #1809 by @vmaerten and @shirayu)
15+
- Fix variables not working properly for a `defer:` statement (#1803, #1814 by
16+
@vmaerten and @andreynering).
17+
818
## v3.39.0 - 2024-09-07
919

1020
- Added

website/versioned_docs/version-latest/changelog.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ sidebar_position: 14
55

66
# Changelog
77

8+
## v3.39.1 - 2024-09-18
9+
10+
- Added Renovate configuration to automatically create PRs to keep dependencies
11+
up to date (#1783 by @vmaerten).
12+
- Fixed a bug where the help was displayed twice (#1805, #1806 by @vmaerten).
13+
- Fixed a bug where ZSH and PowerShell completions did not work when using the
14+
recommended method. (#1813, #1809 by @vmaerten and @shirayu)
15+
- Fix variables not working properly for a `defer:` statement (#1803, #1814 by
16+
@vmaerten and @andreynering).
17+
818
## v3.39.0 - 2024-09-07
919

1020
- Added

website/versioned_docs/version-latest/installation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ task --completion fish | source
287287

288288
<TabItem value="4">
289289
```powershell title="$PROFILE\Microsoft.PowerShell_profile.ps1"
290-
Invoke-Expression (&task --completion powershell)
290+
Invoke-Expression (&task --completion powershell | Out-String)
291291
```
292292
</TabItem></Tabs>
293293

0 commit comments

Comments
 (0)