astral-sh/uv

`uv version --all-packages` option to bump all workspace members

Open

#15 892 ouverte le 16 sept. 2025

Voir sur GitHub
 (2 commentaires) (8 réactions) (0 assignés)Rust (3 111 forks)batch import
enhancementhelp wanted

Métriques du dépôt

Stars
 (84 934 stars)
Métriques de merge PR
 (Merge moyen 7j 16h) (259 PRs mergées en 30 j)

Description

Summary

Similar to how uv build has an --all-packages option, uv version could provide the same capability. Currently, it only features a --package option which is cumbersome for projects with many workspaces if you want to bump them all at once.

Example

To bump all workspace members' version today:

uv version --bump minor --package a
uv version --bump minor --package b
uv version --bump minor --package c

Proposal:

uv version --bump minor --all-packages

Guide contributeur