From d8053f64ef5a3d4716648b6364da423cb5c8849a Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Mon, 27 Mar 2023 01:14:19 +0100 Subject: [PATCH] Prepare for upcoming extension release (#1088) --- CHANGELOG.md | 5 +++++ Taskfile.yml | 6 +----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0915c426..58cf70de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +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)! + +> **NOTE:** +> The extension _requires_ v3.23.0 to be installed in order to work. + - The website was integrated with [Crowdin](https://crowdin.com/project/taskfile) to allow the community to contribute with translations! [Chinese](https://taskfile.dev/zh-Hans/) is the diff --git a/Taskfile.yml b/Taskfile.yml index 306ccee6..14bef3c5 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -21,11 +21,7 @@ tasks: sources: - './**/*.go' cmds: - - go install -v -ldflags="-w -s -X '{{.VERSION_VAR}}={{.GIT_COMMIT}}'" ./cmd/task - vars: - VERSION_VAR: github.com/go-task/task/v3/internal/version.version - GIT_COMMIT: - sh: git log -n 1 --format=%h + - go install -v ./cmd/task generate: desc: Runs Go generate to create mocks