From 8d6d6167911b8620646be38a2035a669bb810ab5 Mon Sep 17 00:00:00 2001 From: Bryan Lee <38807139+liby@users.noreply.github.com> Date: Sat, 10 May 2025 05:41:24 +0800 Subject: [PATCH] Update issue templates to use `uv self version` command (#13370) ## Summary This PR updates the issue templates to recommend using the `uv self version` command instead of `uv version` for retrieving uv's own version information. The `uv version` command is intended to show the current project's version (from pyproject.toml), not the uv tool version, which leads to confusion when users try to report issues. ## Test Plan n/a --- .github/ISSUE_TEMPLATE/1_bug_report.yaml | 2 +- .github/ISSUE_TEMPLATE/3_question.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yaml b/.github/ISSUE_TEMPLATE/1_bug_report.yaml index 1cf14ec8c..c7f6438b9 100644 --- a/.github/ISSUE_TEMPLATE/1_bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/1_bug_report.yaml @@ -27,7 +27,7 @@ body: - type: input attributes: label: Version - description: What version of uv are you using? (see `uv version`) + description: What version of uv are you using? (see `uv self version`) placeholder: e.g., uv 0.5.20 (1c17662b3 2025-01-15) validations: required: true diff --git a/.github/ISSUE_TEMPLATE/3_question.yaml b/.github/ISSUE_TEMPLATE/3_question.yaml index 85b706138..82692452f 100644 --- a/.github/ISSUE_TEMPLATE/3_question.yaml +++ b/.github/ISSUE_TEMPLATE/3_question.yaml @@ -25,7 +25,7 @@ body: - type: input attributes: label: Version - description: What version of uv are you using? (see `uv version`) + description: What version of uv are you using? (see `uv self version`) placeholder: e.g., uv 0.5.20 (1c17662b3 2025-01-15) validations: required: false