fix: correct pesde.toml inclusion message in publish

This commit is contained in:
daimond113 2024-10-13 11:59:31 +02:00
parent 25260e5ab7
commit bf77b69b0b
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
2 changed files with 5 additions and 1 deletions

View file

@ -5,6 +5,10 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- Correct `pesde.toml` inclusion message in `publish` command by @daimond113
## [0.5.0-rc.5] - 2024-10-12 ## [0.5.0-rc.5] - 2024-10-12
### Added ### Added
- Inform user about not finding any bin package when using its bin invocation by @daimond113 - Inform user about not finding any bin package when using its bin invocation by @daimond113

View file

@ -106,7 +106,7 @@ impl PublishCommand {
_ => None, _ => None,
}; };
if !manifest.includes.insert(MANIFEST_FILE_NAME.to_string()) { if manifest.includes.insert(MANIFEST_FILE_NAME.to_string()) {
println!( println!(
"{}: {MANIFEST_FILE_NAME} was not in includes, adding it", "{}: {MANIFEST_FILE_NAME} was not in includes, adding it",
"warn".yellow().bold() "warn".yellow().bold()