Skip to content

Commit

Permalink
add a change tracker entry
Browse files Browse the repository at this point in the history
  • Loading branch information
default committed Jul 24, 2024
1 parent dc50770 commit 6ce0932
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -1107,8 +1107,8 @@ def bootstrap(args):
"git clone nor distributed tarball.\nThis build may fail due to missing submodules "
"unless you put them in place manually.")

# Read from `--config`, then `RUST_BOOTSTRAP_CONFIG`, then `./bootstrap.toml` or `./config.toml`,
# then `bootstrap.toml` or `config.toml` in the root directory.
# Read from `--config`, then `RUST_BOOTSTRAP_CONFIG`, then `./bootstrap.toml` or
# `./config.toml`, then `bootstrap.toml` or `config.toml` in the root directory.
toml_path = args.config or os.getenv('RUST_BOOTSTRAP_CONFIG')
using_default_path = toml_path is None
if using_default_path:
Expand Down
5 changes: 5 additions & 0 deletions src/bootstrap/src/utils/change_tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
severity: ChangeSeverity::Info,
summary: "the `wasm-component-ld` tool is now built as part of `build.extended` and can be a member of `build.tools`",
},
ChangeInfo {
change_id: 126875,
severity: ChangeSeverity::Info,
summary: "Rename the bootstrap configuration file from `config.toml` to `bootstrap.toml`.",
},
];

0 comments on commit 6ce0932

Please sign in to comment.