Releasing a BuildΒΆ
Follow these steps to release a build of CYLGame.
Version Bump
Change the version number in
pyproject.toml
to the version you wish to release. (Note: for bug fixes simply add one to the last number ex.1.6.22
->1.6.23
)Commit this change using git and the the following message:
Version Bump
(Example commandgit commit pyproject.toml -m "Version Bump"
)Create a tag for the version in git. (Example command
git tag v1.6.23
)Push the commit and tag to github. (Example command
git push origin master --tags
)
Check build
Check https://github.com/UMDLARS/CYLGame to make sure the build passes.
Compile and Upload
Run
make build
to compile.Run
make publish
to upload the build to the Python Package Index (aka. the Cheese Shop).