File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -67,3 +67,31 @@ robot tests/system
67672 . Ensure you have run the unit and system tests locally.
68683 . Ensure that all ` pre-commit ` hooks pass successfully.
69694 . Open a Pull Request!
70+
71+
72+ ## Releasing
73+
74+ To release a new version of the project, follow these steps:
75+
76+ ### 1. Update the version number
77+ Update the version number in:
78+ - ` pyproject.toml `
79+ - ` src/robot_trace/__init__.py `
80+
81+ ### 2. Commit the version change
82+ ``` sh
83+ git add pyproject.toml src/robot_trace/__init__.py
84+ git commit -m " Bump version to X.Y.Z"
85+ ```
86+
87+ ### 3. Create a release tag
88+ ``` sh
89+ git tag vX.Y.Z
90+ git push origin vX.Y.Z
91+ ```
92+
93+ ### 4. Publish to PyPI
94+ ``` sh
95+ python -m build
96+ python -m twine upload dist/*
97+ ```
Original file line number Diff line number Diff line change 11from .RobotTrace import RobotTrace as robot_trace
22
33__all__ = ["robot_trace" ]
4+ __version__ = "1.0.0"
You can’t perform that action at this time.
0 commit comments