Skip to content

Commit 4b23d63

Browse files
committed
v3.23.0
1 parent d8053f6 commit 4b23d63

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-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.23.0 - 2023-03-26
44

55
Task now has an [official extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=task.vscode-task) contributed by @pd93! :tada: The extension is maintained in a [new repository](https://github.com/go-task/vscode-task) under the `go-task` organization. We're looking to gather feedback from the community so please give it a go and let us know what you think via a [discussion](https://github.com/go-task/vscode-task/discussions), [issue](https://github.com/go-task/vscode-task/issues) or on our [Discord](https://discord.gg/6TY36E39UK)!
66

Taskfile.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,14 @@ tasks:
107107
cmds:
108108
- go run ./cmd/release {{.CLI_ARGS}}
109109

110+
npm:bump:
111+
desc: Bump version in package.json. Requires `jq`.
112+
vars:
113+
VERSION: '{{coalesce .CLI_ARGS .VERSION}}'
114+
cmds:
115+
- cat package.json | jq '.version = "{{.VERSION}}"' > temp.json; mv temp.json package.json
116+
- cat package-lock.json | jq '.version = "{{.VERSION}}" | .packages."".version = "{{.VERSION}}"' > temp.json; mv temp.json package-lock.json
117+
110118
npm:publish:
111119
desc: Publish release to npm
112120
cmds:

docs/docs/changelog.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ sidebar_position: 7
55

66
# Changelog
77

8+
## v3.23.0 - 2023-03-26
9+
10+
Task now has an [official extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=task.vscode-task) contributed by [@pd93](https://github.com/pd93)! :tada: The extension is maintained in a [new repository](https://github.com/go-task/vscode-task) under the `go-task` organization. We're looking to gather feedback from the community so please give it a go and let us know what you think via a [discussion](https://github.com/go-task/vscode-task/discussions), [issue](https://github.com/go-task/vscode-task/issues) or on our [Discord](https://discord.gg/6TY36E39UK)!
11+
12+
> **NOTE:**
13+
> The extension _requires_ v3.23.0 to be installed in order to work.
14+
15+
- The website was integrated with
16+
[Crowdin](https://crowdin.com/project/taskfile) to allow the community to
17+
contribute with translations! [Chinese](https://taskfile.dev/zh-Hans/) is the
18+
first language available ([#1057](https://github.com/go-task/task/issues/1057), [#1058](https://github.com/go-task/task/issues/1058) by [@misitebao](https://github.com/misitebao)).
19+
- Added task location data to the `--json` flag output ([#1056](https://github.com/go-task/task/issues/1056) by [@pd93](https://github.com/pd93))
20+
- Change the name of the file generated by `task --init` from `Taskfile.yaml` to
21+
`Taskfile.yml` ([#1062](https://github.com/go-task/task/issues/1062) by [@misitebao](https://github.com/misitebao)).
22+
- Added new `splitArgs` template function (`{{splitArgs "foo bar 'foo bar
23+
baz'"}}`) to ensure string is split as arguments ([#1040](https://github.com/go-task/task/issues/1040),
24+
[#1059](https://github.com/go-task/task/issues/1059) by [@dhanusaputra](https://github.com/dhanusaputra)).
25+
- Fix the value of `{{.CHECKSUM}}` variable in status ([#1076](https://github.com/go-task/task/issues/1076), [#1080](https://github.com/go-task/task/issues/1080) by [@pd93](https://github.com/pd93)).
26+
- Fixed deep copy implementation ([#1072](https://github.com/go-task/task/issues/1072) by [@pd93](https://github.com/pd93))
27+
- Created a tool to assist with releases ([#1086](https://github.com/go-task/task/issues/1086) by [@pd93](https://github.com/pd93)).
28+
829
## v3.22.0 - 2023-03-10
930

1031
- Add a brand new `--global` (`-g`) flag that will run a Taskfile from your

package-lock.json

Lines changed: 2 additions & 2 deletions
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.22.0",
3+
"version": "3.23.0",
44
"description": "A task runner / simpler Make alternative written in Go",
55
"scripts": {
66
"postinstall": "go-npm install",

0 commit comments

Comments
 (0)