kjanat/skills · Archived

uv-versioning

Version bumping workflow for uv projects. Use when reading/updating package versions, planning release bump chains, or validating main vs workspace package bumps.

First seen Feb 25, 2026

Installation

$ npx skills add kjanat/skills --skill uv-versioning

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kjanat/skills · top by installs.

npx skills add kjanat/skills

Browse all from kjanat/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch master
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0
LicenseMIT
More metadata
author
kjanat
version
1.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,374 B
  • docs SUMMARY.md 183 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 9 installs

SKILL.md

uv-versioning

Safe, repeatable uv version usage for single-package and workspace projects.

Use When

  • You need current package version quickly.
  • You need semantic/pre-release/post/dev bump updates.
  • You need workspace package bumping via --package.
  • You want preview-only changes via --dry-run.

Core Rules

  • Prefer --dry-run first for any non-trivial bump.
  • Multiple --bump flags are allowed; order matters.
  • Use --package <name> for workspace member bumps.
  • Use --output-format json when scripts consume output.

Read Version

uv version
uv version --short
uv version --output-format json

Workspace member:

uv version --package pykeepass-stubs
uv version --package pykeepass-stubs --output-format json

Bump Components

Supported components:

  • major, minor, patch
  • alpha, beta, rc
  • post, dev
  • stable

Semantics:

  • major: 1.2.3 -> 2.0.0
  • minor: 1.2.3 -> 1.3.0
  • patch: 1.2.3 -> 1.2.4
  • alpha: 1.2.3a4 -> 1.2.3a5
  • beta: 1.2.3b4 -> 1.2.3b5
  • rc: 1.2.3rc4 -> 1.2.3rc5
  • post: 1.2.3.post5 -> 1.2.3.post6
  • dev: 1.2.3a4.dev6 -> 1.2.3.dev7
  • stable: clear pre/dev/post to stable core, e.g. 1.2.3b4.post5.dev6 -> 1.2.3

Common Patterns

Main package:

uv version --bump major --bump alpha --dry-run
uv version --bump major --bump alpha

uv version --bump stable --dry-run
uv version --bump stable

Workspace package:

uv version --package pykeepass-stubs --bump major --bump alpha --dry-run
uv version --package pykeepass-stubs --bump major --bump alpha

uv version --package pykeepass-stubs --bump stable --dry-run
uv version --package pykeepass-stubs --bump stable

General form:

uv version [--package <workspace-member>] \
  --bump <major|minor|patch|post|dev|alpha|beta|rc|stable> \
  [--bump <...> ...] [--dry-run]

Release Hygiene

  • Keep bump commands aligned with repo release trigger policy.
  • In split-release repos, do not mix main-package and stubs-package bumps.
  • After real bump, confirm workflows/tags expect same normalized version.