diff --git a/crates/uv/tests/common/mod.rs b/crates/uv/tests/common/mod.rs index 1431e2a24b010..2d841b97a3c46 100644 --- a/crates/uv/tests/common/mod.rs +++ b/crates/uv/tests/common/mod.rs @@ -52,7 +52,7 @@ pub const INSTA_FILTERS: &[(&str, &str)] = &[ (r"tv_sec: \d+", "tv_sec: [TIME]"), (r"tv_nsec: \d+", "tv_nsec: [TIME]"), // Rewrite Windows output to Unix output - (r"\\([\w\d])", "/$1"), + (r"\\([\w\d\.])", "/$1"), (r"uv.exe", "uv"), // uv version display ( diff --git a/docs/reference/cli.md b/docs/reference/cli.md index 513bbd6545ec9..46ac933a6e97b 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -6602,7 +6602,7 @@ uv publish [OPTIONS] [FILES]...
When disabled, uv will only use locally cached data and locally available files.
---password
passwordThe password for the upload
+--password
, -p
passwordThe password for the upload
May also be set with the UV_PUBLISH_PASSWORD
environment variable.
--publish-url
publish-urlThe URL to the upload endpoint. Note: This is usually not the same as the index URL.
@@ -6628,7 +6628,7 @@ uv publish [OPTIONS] [FILES]...--quiet
, -q
Do not print any output
---username
usernameThe username for the upload
+--username
, -u
usernameThe username for the upload
May also be set with the UV_PUBLISH_USERNAME
environment variable.
--verbose
, -v
Use verbose output.