mirror of https://github.com/astral-sh/uv
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:
parent
9ec385a266
commit
525ea78399
|
|
@ -102,15 +102,15 @@ When moving from a pre-release to a new pre-release version, just bump the relev
|
|||
component:
|
||||
|
||||
```console
|
||||
uv version --bump beta
|
||||
hello-world 1.3.0b1 => 1.3.1b2
|
||||
$ uv version --bump beta
|
||||
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
|
||||
pre-release component:
|
||||
|
||||
```console
|
||||
uv version --bump stable
|
||||
$ uv version --bump stable
|
||||
hello-world 1.3.1b2 => 1.3.1
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue