uv
uv copied to clipboard
feature request: bump project version command
I'm replacing rye
with uv
.
(The following articles were referenced: https://github.com/astral-sh/rye/discussions/1342)
I've replaced most of the functionality with uv
, or changed to other commands or packages.
But changing the version of a project is both simple and annoying.
In the past, I've changed versions like this(in github action)
rye version <some version>
But now I change it like this
sed -i'' -E “s/version = \”0.0.0\“/version = \”$VERSION\“/g” pyproject.toml
This works, but it's not satisfactory.
I'd like to know if you have any plans to provide functionality like this.
Again, I'm not saying you have to.
It doesn't matter if you don't have it, but it would be nice to have it.
Either way, I'm happy enough with uv
for now.