After a new release comes out, unless it's a patch release, minor in version.py needs to be bumped up on main, i.e. (from RELEASE.md):
On branch main, we want to modify the version so that minor is increased by 1, and extension is "dev". In this example we want the version on main to be:1.6.0-dev. We need to create a new branch from main:
After a new release comes out, unless it's a patch release,
minor
inversion.py
needs to be bumped up onmain
, i.e. (from RELEASE.md):On branch
main
, we want to modify the version so thatminor
is increased by 1, andextension
is "dev". In this example we want the version onmain
to be:1.6.0-dev
. We need to create a new branch frommain
:On branch
workflows/update-version-main
, modifyversion.py
so thatminor
is increased by 1, andextension
is"dev"
. Commit and push the changes.Create a PR with
main
as the base branch.We forget about this step most times.