Skip to content

Commit

Permalink
v3.0.0-alpha.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
leaanthony committed Dec 6, 2024
1 parent 7974814 commit 65e7437
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
5 changes: 5 additions & 0 deletions mkdocs-website/docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions v3/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions v3/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
6 changes: 3 additions & 3 deletions v3/internal/commands/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion v3/internal/version/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.0.0-alpha.8.1
v3.0.0-alpha.8.2

0 comments on commit 65e7437

Please sign in to comment.