-
Update the
kubernetes-client-python
submodule if necessary:VERSION=v... pushd kubernetes-client-python git fetch --all --tags git checkout $VERSION popd
-
Do code generation:
poetry run python codegen
-
Format:
bin/fmt
-
Update the version in pyproject.toml.
-
Check for any new files in this release, add them:
git diff git add ...
-
Add and push a corresponding tag:
VERSION=v... git commit -am "Release $VERSION" git tag -a $VERSION -m $VERSION git push --follow-tags