-
Notifications
You must be signed in to change notification settings - Fork 296
Developer Doc: Creating a New Release
Jeremy Wright edited this page Jan 30, 2023
·
12 revisions
Comment out use_scm_version=True
and add version="x.y.z",
just below it.
Change the version number in the __init__.py
file in the root cadquery
directory: __version__ = "x.y-dev"
becomes __version__ = "x.y.z"
All of the changes since the last release need to be documented.
Create a PR for the release changes to give other devs and the broader community the opportunity to comment.
Just what the section title says.
TODO: Add commands here
Example: __version__ = "2.2.0"
would be become __version__ = "2.3-dev"
to start next release cycle.
Uncomment use_scm_version=True
and remove version="x.y.z",
that is just below it.