Conversation
|
Hi, I think |
|
@inoa-jboliveira that’s a good point. I’ll update to cover that. |
|
Can we add a |
f112cae to
14f9951
Compare
|
This change invalidates a couple of our old tests that checked that passing |
| help Display documentation for a command | ||
|
|
||
| Options: | ||
| -V, --version Print version |
There was a problem hiding this comment.
I feel like the old description was better? This feels like a minor regression
There was a problem hiding this comment.
Unfortunately, it seems like you can't update the default version help message when using the clap macro approach. Do you think this regression is a reason to move this out of the release?
There was a problem hiding this comment.
Why do we need to use the clap macro? Can't we just make this flag only applicable at the root instead of global?
2a5764a to
b230fb6
Compare
2c9a250 to
c7d7d13
Compare
|
Closing in favor of #13108 |
Currently, uv will return the uv version when
--versionis passed into subcommands, though it is displayed as follows:We don't actually version subcommands separately and we may want to use the
--versionflag for other purposes (e.g., #12376). This PR removes this default version from all subcommands.uv --versionstill works.Closes #12431