Skip to content

Commit b5722f1

Browse files
committed
Fix attr_added_in("next version") annotations with actual versions
- `PS_MODULE_PATH`: added in 0.10.0 (PR #17870) - `UV_WORKING_DIR`: added in 0.9.14 (PR #16884) https://claude.ai/code/session_01XMu1RyFzAPG6Rhbu19gQoi
1 parent cde48c8 commit b5722f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/uv-static/src/env_vars.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ impl EnvVars {
789789
pub const KSH_VERSION: &'static str = "KSH_VERSION";
790790

791791
/// Used to detect PowerShell usage (set by PowerShell on all platforms).
792-
#[attr_added_in("next version")]
792+
#[attr_added_in("0.10.0")]
793793
pub const PS_MODULE_PATH: &'static str = "PSModulePath";
794794

795795
/// Used with `--python-platform macos` and related variants to set the
@@ -1260,7 +1260,7 @@ impl EnvVars {
12601260

12611261
/// Equivalent to the `--directory` command-line argument. `UV_WORKING_DIRECTORY` (added in
12621262
/// v0.9.1) is also supported for backwards compatibility.
1263-
#[attr_added_in("next version")]
1263+
#[attr_added_in("0.9.14")]
12641264
pub const UV_WORKING_DIR: &'static str = "UV_WORKING_DIR";
12651265

12661266
/// Equivalent to the `--directory` command-line argument.

0 commit comments

Comments
 (0)