use crate::cli::{BumpOpts, OutputFormat};
use crate::error::Result;
use crate::services::release::BumpService;
pub async fn execute(
workspace_path: &str,
opts: BumpOpts,
format: OutputFormat,
) -> Result<crate::error::CommandExitCode> {
let service = BumpService::new(workspace_path.to_string(), opts);
service.execute(format).await
}