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: generated/python/datadoc_model/README.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,18 @@ This package contains pydantic models defining the fields and data types used in
11
11
- Support versioning of the metadata format
12
12
- Enforce consistency across multiple tools
13
13
14
-
## Release
14
+
## Release process
15
15
16
-
To release this package, create a branch and run `uv version --bump [patch | minor | major]` depending on your change. Once the branch is merged, a GitHub Actions workflow handles the rest.
16
+
Update the version using `uv version --bump`. This project follows [semantic versioning](https://semver.org/):
17
+
18
+
```bash
19
+
uv version --bump patch # bug fixes
20
+
uv version --bump minor # new features
21
+
uv version --bump major # breaking changes
22
+
```
23
+
24
+
Create a new branch for the release.
25
+
26
+
Commit with message like `Bump version x.x.x -> y.y.y`.
0 commit comments