v3.0.0-alpha.8.2

This commit is contained in:
Lea Anthony 2024-12-07 10:11:41 +11:00
commit 65e7437eed
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405
5 changed files with 12 additions and 9 deletions

View file

@ -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

View file

@ -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

View file

@ -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=

View file

@ -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
}

View file

@ -1 +1 @@
v3.0.0-alpha.8.1
v3.0.0-alpha.8.2