diff --git a/mkdocs-website/docs/en/changelog.md b/mkdocs-website/docs/en/changelog.md index 08f5f2c9d..0fe234060 100644 --- a/mkdocs-website/docs/en/changelog.md +++ b/mkdocs-website/docs/en/changelog.md @@ -17,6 +17,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v3.0.0-alpha.8.2 - 2024-12-07 + +### Changed +- Update fork of Taskfile to fix version issues when installing using `go install` by @leaanthony + ## v3.0.0-alpha.8.1 - 2024-12-07 ### Changed diff --git a/v3/go.mod b/v3/go.mod index e3dd45060..40ef38478 100644 --- a/v3/go.mod +++ b/v3/go.mod @@ -9,7 +9,6 @@ require ( github.com/ebitengine/purego v0.4.0-alpha.4 github.com/go-git/go-git/v5 v5.12.0 github.com/go-ole/go-ole v1.3.0 - github.com/go-task/task/v3 v3.40.0 github.com/godbus/dbus/v5 v5.1.0 github.com/google/go-cmp v0.6.0 github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 @@ -33,6 +32,7 @@ require ( github.com/tc-hib/winres v0.3.1 github.com/wailsapp/go-webview2 v1.0.18 github.com/wailsapp/mimetype v1.4.1 + github.com/wailsapp/task/v3 v3.40.1-patched3 golang.org/x/sys v0.28.0 golang.org/x/term v0.26.0 golang.org/x/tools v0.23.0 @@ -133,5 +133,3 @@ require ( modernc.org/token v1.0.1 // indirect mvdan.cc/sh/v3 v3.10.0 // indirect ) - -replace github.com/go-task/task/v3 v3.40.0 => github.com/wailsapp/task/v3 v3.19.2-0.20241206221137-ce6256667be0 diff --git a/v3/go.sum b/v3/go.sum index 314f6c453..151fd1aab 100644 --- a/v3/go.sum +++ b/v3/go.sum @@ -307,8 +307,8 @@ github.com/wailsapp/go-webview2 v1.0.18 h1:SSSCoLA+MYikSp1U0WmvELF/4c3x5kH8Vi31T github.com/wailsapp/go-webview2 v1.0.18/go.mod h1:qJmWAmAmaniuKGZPWwne+uor3AHMB5PFhqiK0Bbj8kc= github.com/wailsapp/mimetype v1.4.1 h1:pQN9ycO7uo4vsUUuPeHEYoUkLVkaRntMnHJxVwYhwHs= github.com/wailsapp/mimetype v1.4.1/go.mod h1:9aV5k31bBOv5z6u+QP8TltzvNGJPmNJD4XlAL3U+j3o= -github.com/wailsapp/task/v3 v3.19.2-0.20241206221137-ce6256667be0 h1:NkY5LxC2qaa5NptuydCeuU155JIxyeuyF7/dJsNeJIM= -github.com/wailsapp/task/v3 v3.19.2-0.20241206221137-ce6256667be0/go.mod h1:GuHraC/erBpUdA98k7tcPlygJ90Q87UoT9RauYXnsdA= +github.com/wailsapp/task/v3 v3.40.1-patched3 h1:i6O1WNdSur9CGaiMDIYGjsmj/qS4465zqv+WEs6sPRs= +github.com/wailsapp/task/v3 v3.40.1-patched3/go.mod h1:jIP48r8ftoSQNlxFP4+aEnkvGQqQXqCnRi/B7ROaecE= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 h1:nIPpBwaJSVYIxUFsDv3M8ofmx9yWTog9BfvIu0q41lo= diff --git a/v3/internal/commands/task.go b/v3/internal/commands/task.go index f72a405ff..6e5f63d22 100644 --- a/v3/internal/commands/task.go +++ b/v3/internal/commands/task.go @@ -10,8 +10,8 @@ import ( "github.com/pterm/pterm" - "github.com/go-task/task/v3" - "github.com/go-task/task/v3/taskfile/ast" + "github.com/wailsapp/task/v3" + "github.com/wailsapp/task/v3/taskfile/ast" ) // BuildSettings contains the CLI build settings @@ -52,7 +52,7 @@ type RunTaskOptions struct { func RunTask(options *RunTaskOptions, otherArgs []string) error { if options.Version { - ver := BuildSettings["mod.github.com/go-task/task/v3"] + ver := BuildSettings["mod.github.com/wailsapp/task/v3"] fmt.Println("Task Version:", ver) return nil } diff --git a/v3/internal/version/version.txt b/v3/internal/version/version.txt index 21b3e284f..5afc40e39 100644 --- a/v3/internal/version/version.txt +++ b/v3/internal/version/version.txt @@ -1 +1 @@ -v3.0.0-alpha.8.1 \ No newline at end of file +v3.0.0-alpha.8.2 \ No newline at end of file