Skip to content

Commit

Permalink
v3.0.0-alpha.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
leaanthony committed Dec 6, 2024
1 parent 65e7437 commit e0d788b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
2 changes: 2 additions & 0 deletions mkdocs-website/docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## v3.0.0-alpha.8.3 - 2024-12-07

## v3.0.0-alpha.8.2 - 2024-12-07

### Changed
Expand Down
25 changes: 13 additions & 12 deletions v3/internal/commands/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,18 +84,19 @@ func RunTask(options *RunTaskOptions, otherArgs []string) error {
}

e := task.Executor{
Force: options.Force,
Watch: options.Watch,
Verbose: options.Verbose,
Silent: options.Silent,
Dir: options.Dir,
Dry: options.Dry,
Entrypoint: options.EntryPoint,
Summary: options.Summary,
Parallel: options.Parallel,
Color: options.Color,
Concurrency: options.Concurrency,
Interval: time.Duration(options.Interval) * time.Second,
Force: options.Force,
Watch: options.Watch,
Verbose: options.Verbose,
Silent: options.Silent,
Dir: options.Dir,
Dry: options.Dry,
Entrypoint: options.EntryPoint,
Summary: options.Summary,
Parallel: options.Parallel,
Color: options.Color,
Concurrency: options.Concurrency,
Interval: time.Duration(options.Interval) * time.Second,
DisableVersionCheck: true,

Stdin: os.Stdin,
Stdout: os.Stdout,
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.2
v3.0.0-alpha.8.3

0 comments on commit e0d788b

Please sign in to comment.