doc: fix example of bumping beta version without patch bump (#16132)

<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->
Fixes #16131

## Summary

Fix error in example documentation for bumping version.

## Test Plan

I viewed the markdown on the branch in my fork. Looked good.
This commit is contained in:
Kevin Neal 2025-10-06 02:16:01 -07:00 committed by GitHub
parent 9ec385a266
commit 525ea78399
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -102,15 +102,15 @@ When moving from a pre-release to a new pre-release version, just bump the relev
component: component:
```console ```console
uv version --bump beta $ uv version --bump beta
hello-world 1.3.0b1 => 1.3.1b2 hello-world 1.3.0b1 => 1.3.0b2
``` ```
When moving from a pre-release to a stable version, the `stable` option can be used to clear the When moving from a pre-release to a stable version, the `stable` option can be used to clear the
pre-release component: pre-release component:
```console ```console
uv version --bump stable $ uv version --bump stable
hello-world 1.3.1b2 => 1.3.1 hello-world 1.3.1b2 => 1.3.1
``` ```