Remove unused version.rs (#16135)

This file does not have a `mod version;`, I assume it's a remnant of the
`uv version` -> `uv self version` transition.
This commit is contained in:
konsti 2025-10-06 16:58:20 +02:00 committed by GitHub
parent 68d6ad813e
commit 3bed81866f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 203 deletions

View File

@ -1,203 +0,0 @@
use std::fmt::Write;
use std::str::FromStr;
use std::{cmp::Ordering, path::Path};
use anyhow::{Result, anyhow};
use owo_colors::OwoColorize;
use uv_cli::version::VersionInfo;
use uv_cli::{VersionBump, VersionFormat};
use uv_fs::Simplified;
use uv_pep440::Version;
use uv_warnings::warn_user;
use uv_workspace::pyproject_mut::Error;
use uv_workspace::{
DiscoveryOptions, ProjectWorkspace, WorkspaceCache,
pyproject_mut::{DependencyTarget, PyProjectTomlMut},
};
use crate::{commands::ExitStatus, printer::Printer};
/// Display version information for uv itself (`uv self version`)
pub(crate) fn self_version(
short: bool,
output_format: VersionFormat,
printer: Printer,
) -> Result<ExitStatus> {
let version_info = uv_cli::version::uv_self_version();
print_version(version_info, None, short, output_format, printer)?;
Ok(ExitStatus::Success)
}
/// Read or update project version (`uv version`)
pub(crate) async fn project_version(
project_dir: &Path,
value: Option<String>,
bump: Option<VersionBump>,
dry_run: bool,
short: bool,
output_format: VersionFormat,
strict: bool,
cache: &WorkspaceCache,
printer: Printer,
) -> Result<ExitStatus> {
// Read the metadata
let workspace = match ProjectWorkspace::discover(
project_dir,
&DiscoveryOptions::default(),
cache,
)
.await
{
Ok(workspace) => workspace,
Err(err) => {
// If strict, hard bail on missing workspace
if strict {
return Err(err)?;
}
// Otherwise, warn and provide fallback
warn_user!(
"Failed to read project metadata ({err}). Running `{}` for compatibility. This fallback will be removed in the future; pass `--preview` to force an error.",
"uv self version".green()
);
return self_version(short, output_format, printer);
}
};
let mut pyproject = PyProjectTomlMut::from_toml(
&workspace.current_project().pyproject_toml().raw,
DependencyTarget::PyProjectToml,
)?;
let pyproject_path = workspace.current_project().root().join("pyproject.toml");
let name = workspace
.current_project()
.pyproject_toml()
.project
.as_ref()
.map(|project| &project.name);
let old_version = pyproject.version().map_err(|err| match err {
Error::MalformedWorkspace => {
if pyproject.has_dynamic_version() {
anyhow!(
"We cannot get or set dynamic project versions in: {}",
pyproject_path.user_display()
)
} else {
anyhow!(
"There is no 'project.version' field in: {}",
pyproject_path.user_display()
)
}
}
err => {
anyhow!("{err}: {}", pyproject_path.user_display())
}
})?;
// Figure out new metadata
let new_version = if let Some(value) = value {
match Version::from_str(&value) {
Ok(version) => Some(version),
Err(err) => match &*value {
"major" | "minor" | "patch" => {
return Err(anyhow!(
"Invalid version `{value}`, did you mean to pass `--bump {value}`?"
));
}
_ => {
return Err(err)?;
}
},
}
} else if let Some(bump) = bump {
Some(bumped_version(&old_version, bump, printer)?)
} else {
None
};
// Apply the metadata
if let Some(new_version) = &new_version {
if !dry_run {
pyproject.set_version(new_version)?;
fs_err::write(pyproject_path, pyproject.to_string())?;
}
}
// Report the results
let old_version = VersionInfo::new(name, &old_version);
let new_version = new_version.map(|version| VersionInfo::new(name, &version));
print_version(old_version, new_version, short, output_format, printer)?;
Ok(ExitStatus::Success)
}
fn print_version(
old_version: VersionInfo,
new_version: Option<VersionInfo>,
short: bool,
output_format: VersionFormat,
printer: Printer,
) -> Result<()> {
match output_format {
VersionFormat::Text => {
if let Some(name) = &old_version.package_name {
if !short {
write!(printer.stdout(), "{name} ")?;
}
}
if let Some(new_version) = new_version {
if short {
writeln!(printer.stdout(), "{}", new_version.cyan())?;
} else {
writeln!(
printer.stdout(),
"{} => {}",
old_version.cyan(),
new_version.cyan()
)?;
}
} else {
writeln!(printer.stdout(), "{}", old_version.cyan())?;
}
}
VersionFormat::Json => {
let final_version = new_version.unwrap_or(old_version);
let string = serde_json::to_string_pretty(&final_version)?;
writeln!(printer.stdout(), "{string}")?;
}
}
Ok(())
}
fn bumped_version(from: &Version, bump: VersionBump, printer: Printer) -> Result<Version> {
// All prereleasey details "carry to 0" with every currently supported mode of `--bump`
// We could go out of our way to preserve epoch information but no one uses those...
if from.any_prerelease() || from.is_post() || from.is_local() || from.epoch() > 0 {
writeln!(
printer.stderr(),
"warning: prerelease information will be cleared as part of the version bump"
)?;
}
let index = match bump {
VersionBump::Major => 0,
VersionBump::Minor => 1,
VersionBump::Patch => 2,
};
// Use `max` here to try to do 0.2 => 0.3 instead of 0.2 => 0.3.0
let old_parts = from.release();
let len = old_parts.len().max(index + 1);
let new_release_vec = (0..len)
.map(|i| match i.cmp(&index) {
// Everything before the bumped value is preserved (or is an implicit 0)
Ordering::Less => old_parts.get(i).copied().unwrap_or(0),
// This is the value to bump (could be implicit 0)
Ordering::Equal => old_parts.get(i).copied().unwrap_or(0) + 1,
// Everything after the bumped value becomes 0
Ordering::Greater => 0,
})
.collect::<Vec<u64>>();
Ok(Version::new(new_release_vec))
}