Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "devtrail-cli"
version = "1.0.2"
version = "1.0.3"
edition = "2021"
description = "CLI tool for DevTrail - Documentation Governance for AI-Assisted Development"
license = "MIT"
Expand Down
7 changes: 1 addition & 6 deletions cli/src/commands/update_framework.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ pub fn run() -> Result<()> {
// Load current checksums
let current_checksums = Checksums::load(&target)?;
if !current_checksums.version.is_empty() {
println!(
" {} {}",
"Current version:".dimmed(),
current_checksums.version
);
utils::info(&format!("Current version: {}", current_checksums.version));
}

// Fetch latest release
Expand All @@ -50,7 +46,6 @@ pub fn run() -> Result<()> {
semver::Version::parse(display_version),
) {
if latest <= current {
println!();
utils::success(&format!(
"Framework is already at the latest version ({})",
current_checksums.version
Expand Down