mitmproxy/release/README.md

30 lines
1.5 KiB
Markdown
Raw Normal View History

# Release Checklist
2017-03-15 21:36:58 +00:00
Make sure run all these steps on the correct branch you want to create a new release for!
- Verify `mitmproxy/version.py`
2017-02-21 17:37:56 +00:00
- Update CHANGELOG
2017-03-15 21:36:58 +00:00
- Verify that all CI tests pass
- Tag the release and push to Github
- Wait for tag CI to complete
2017-03-15 21:36:58 +00:00
## GitHub Release
2017-04-28 12:24:57 +00:00
- Create release notice on Github [here](https://github.com/mitmproxy/mitmproxy/releases/new)
2017-03-15 21:36:58 +00:00
- Attach all files from the new release folder on https://snapshots.mitmproxy.org
## PyPi
- Upload wheel to pypi: `twine upload <mitmproxy-...-.whl`
## Docker
2016-11-22 22:11:57 +00:00
- Update docker-releases repo
2017-03-04 10:50:21 +00:00
- Create a new branch based of master for major versions.
2017-03-15 21:36:58 +00:00
- Update the dependencies in [alpine/requirements.txt](https://github.com/mitmproxy/docker-releases/commit/3d6a9989fde068ad0aea257823ac3d7986ff1613#diff-9b7e0eea8ae74688b1ac13ea080549ba)
* Creating a fresh venv, pip-installing the new wheel in there, and then export all packages:
* `virtualenv -ppython3.5 venv && source venv/bin/activate && pip install mitmproxy && pip freeze`
2017-04-28 12:43:49 +00:00
- Update `latest` tag [here](https://hub.docker.com/r/mitmproxy/mitmproxy/~/settings/automated-builds/)
- Tag the commit with the correct version
   * `2.0.0` for new major versions
   * `2.0.2` for new patch versions
* `2.0` always points to the latest patch version of the `2.0.x` series (update tag + force push)
2017-03-15 21:36:58 +00:00
After everything is done, you might want to bump the version on master in [https://github.com/mitmproxy/mitmproxy/blob/master/mitmproxy/version.py](mitmproxy/version.py) if you just created a major release.