Skip to content

Commit

Permalink
chore: prepare release 0.11.0 (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Feb 20, 2024
1 parent daf785e commit e03b052
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["rust-tests"]

[package]
name = "rattler-build"
version = "0.10.0"
version = "0.11.0"
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
homepage = "https://github.com/prefix-dev/rattler-build"
edition = "2021"
Expand Down
6 changes: 5 additions & 1 deletion src/render/resolved_dependencies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,11 @@ async fn resolve_dependencies(
}

// log a table of the rendered run dependencies
tracing::info!("\nFinalized run dependencies:\n{}", run_specs);
if run_specs.depends.is_empty() && run_specs.constrains.is_empty() {
tracing::info!("\nFinalized run dependencies: this output has no run dependencies");
} else {
tracing::info!("\nFinalized run dependencies:\n{}", run_specs);
}

Ok(FinalizedDependencies {
// build_env is empty now!
Expand Down

0 comments on commit e03b052

Please sign in to comment.