Skip to content

Commit e0d788b

Browse files
committed
v3.0.0-alpha.8.3
1 parent 65e7437 commit e0d788b

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

mkdocs-website/docs/en/changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
## [Unreleased]
1919

20+
## v3.0.0-alpha.8.3 - 2024-12-07
21+
2022
## v3.0.0-alpha.8.2 - 2024-12-07
2123

2224
### Changed

v3/internal/commands/task.go

+13-12
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,19 @@ func RunTask(options *RunTaskOptions, otherArgs []string) error {
8484
}
8585

8686
e := task.Executor{
87-
Force: options.Force,
88-
Watch: options.Watch,
89-
Verbose: options.Verbose,
90-
Silent: options.Silent,
91-
Dir: options.Dir,
92-
Dry: options.Dry,
93-
Entrypoint: options.EntryPoint,
94-
Summary: options.Summary,
95-
Parallel: options.Parallel,
96-
Color: options.Color,
97-
Concurrency: options.Concurrency,
98-
Interval: time.Duration(options.Interval) * time.Second,
87+
Force: options.Force,
88+
Watch: options.Watch,
89+
Verbose: options.Verbose,
90+
Silent: options.Silent,
91+
Dir: options.Dir,
92+
Dry: options.Dry,
93+
Entrypoint: options.EntryPoint,
94+
Summary: options.Summary,
95+
Parallel: options.Parallel,
96+
Color: options.Color,
97+
Concurrency: options.Concurrency,
98+
Interval: time.Duration(options.Interval) * time.Second,
99+
DisableVersionCheck: true,
99100

100101
Stdin: os.Stdin,
101102
Stdout: os.Stdout,

v3/internal/version/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.0.0-alpha.8.2
1+
v3.0.0-alpha.8.3

0 commit comments

Comments
 (0)