v0.1.0 release
Closed this issue · 3 comments
lb- commented
Wagtail 3.0 is on RC2 so it is getting close
wagtail/wagtail#8362
Plan is to release 0.1.0 (non-alpha) before 3.0 goes out.
Plan is to release 0.1.0 just after 3.0 goes out (as we want to support Wagtail 3.0 with this release)
Release checklist
- Update
VERSION
inwagtail_hallo/__init__.py
- Update
tox.ini
,setup.py
,README.md
,package.json
andworkflows/ci.yml
with new supported Python, Django, or Wagtail versions - Run
npm install
to ensure thepackage-lock.json
is updated - Update classifiers (e.g.
"Development Status :: # - Alpha"
based on status (# being a number) insetup.py
- Update
setup.py
with new release version - Update
CHANGELOG.md
with the release date - Push to PyPI
pip install twine
python3 setup.py clean --all sdist bdist_wheel
twine upload dist/*
<-- pushes to PyPI
- Create a stable release branch (e.g.
stable/1.0.x
) - Add a Github release (e.g.
v1.0.0
)
lb- commented
Update - I think it makes more sense to release just after 3.0 goes out as we need to also update all the dependencies to 3.0
lb- commented
DONE