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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,9 +128,17 @@ docker run -p 8050:8050 \
128
128
datadoc
129
129
```
130
130
131
-
###Release process
131
+
## Release process
132
132
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.
134
142
135
143
Commit with message like `Bump version x.x.x -> y.y.y`.
0 commit comments