mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +00:00
fix: correct pesde.toml inclusion message in publish
This commit is contained in:
parent
25260e5ab7
commit
bf77b69b0b
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue