You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the uv version command only prints out the current version. This could be updated to take in an argument or major, minor or patch or a custom version to increment the version in the pyproject.toml similarly to how poetry does this.
If the current version was 1.0.0 in the pyproject.toml the commands would change that value as follows
uv version patch -> 1.0.1
uv version minor -> 1.1.0
uv version major -> 2.0.0
uv version 1.1.1.dev101212312 -> 1.1.1.dev101212312
The text was updated successfully, but these errors were encountered:
Currently the
uv version
command only prints out the current version. This could be updated to take in an argument or major, minor or patch or a custom version to increment the version in thepyproject.toml
similarly to how poetry does this.If the current version was 1.0.0 in the pyproject.toml the commands would change that value as follows
uv version patch
-> 1.0.1uv version minor
-> 1.1.0uv version major
-> 2.0.0uv version 1.1.1.dev101212312
-> 1.1.1.dev101212312The text was updated successfully, but these errors were encountered: