Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaslueg committed Apr 9, 2024
1 parent a5790d4 commit d0764ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]
### Changelog
- Fixed hard error in case `rustdoc` is missing

## [0.7.1] - 2023-10-14
### Changed
Expand Down
4 changes: 3 additions & 1 deletion src/environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,9 @@ impl EnvironmentMap {
let doc = format!("The output of `{rustc} -V`");
write_str_variable!(w, "RUSTC_VERSION", rustc_version, doc);

let doc = format!("The output of `{rustdoc} -V`");
let doc = format!(
"The output of `{rustdoc} -V`; empty string if `{rustdoc} -V` failed to execute"
);
write_str_variable!(w, "RUSTDOC_VERSION", rustdoc_version, doc);
Ok(())
}
Expand Down

0 comments on commit d0764ae

Please sign in to comment.