Skip to content

Commit 29934a5

Browse files
authored
Update CONTRIBUTING.md (#551)
1 parent 214504b commit 29934a5

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,17 @@ docker run -p 8050:8050 \
128128
datadoc
129129
```
130130

131-
### Release process
131+
## Release process
132132

133-
Manually edit the `project.version` field in `pyproject.toml`. This project uses semantic versioning so follow that standard when bumping the version number.
133+
Update the version using `uv version --bump`. This project follows [semantic versioning](https://semver.org/):
134+
135+
```bash
136+
uv version --bump patch # bug fixes
137+
uv version --bump minor # new features
138+
uv version --bump major # breaking changes
139+
```
140+
141+
Create a new branch for the release.
134142

135143
Commit with message like `Bump version x.x.x -> y.y.y`.
136144

0 commit comments

Comments
 (0)