We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb04be commit d261d7fCopy full SHA for d261d7f
CHANGELOG.md
@@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5
6
## Unreleased
7
8
+### Fixed
9
+
10
+- The default value for `WorkspaceBuilder::fetch_registry_index_during_builds`
11
+ was mistakenly set to `false` instead of `true` by default.
12
13
## [0.3.1] - 2019-09-23
14
15
### Fixed
src/workspace.rs
@@ -42,7 +42,7 @@ impl WorkspaceBuilder {
42
sandbox_image: None,
43
command_timeout: DEFAULT_COMMAND_TIMEOUT,
44
command_no_output_timeout: DEFAULT_COMMAND_NO_OUTPUT_TIMEOUT,
45
- fetch_registry_index_during_builds: false,
+ fetch_registry_index_during_builds: true,
46
running_inside_docker: false,
47
fast_init: false,
48
}
0 commit comments