1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-04 19:16:04 +02:00
ultrajson/RELEASING.md

25 lines
885 B
Markdown
Raw Permalink Normal View History

2020-03-07 16:52:29 +01:00
# Release Checklist
2021-09-05 19:45:29 +02:00
- [ ] Get `main` to the appropriate code release state.
[GitHub Actions](https://github.com/ultrajson/ultrajson/actions) should be running
2021-09-05 19:45:29 +02:00
cleanly for all merges to `main`.
2020-03-07 16:52:29 +01:00
[![GitHub Actions status](https://github.com/ultrajson/ultrajson/workflows/Test/badge.svg)](https://github.com/ultrajson/ultrajson/actions)
- [ ] Edit release draft, adjust text if needed: https://github.com/ultrajson/ultrajson/releases
- [ ] Check next tag is correct, amend if needed
- [ ] Publish release
- [ ] Check the tagged GitHub Actions builds have deployed
2021-09-22 13:36:25 +02:00
[source and wheels](https://github.com/ultrajson/ultrajson/actions?query=workflow%3ADeploy)
to
[PyPI](https://pypi.org/project/ujson/#history)
2020-03-07 16:52:29 +01:00
- [ ] Check installation:
```bash
pip3 uninstall -y ujson && pip3 install -U ujson
python3 -c "import ujson; print(ujson.__version__)"
2020-03-07 16:52:29 +01:00
```