https://github.com/esnme/ultrajson
Raw File
Tip revision: 04daf02b947b2844afb27e6ce125d1d83afb792b authored by Hugo van Kemenade on 01 April 2024, 18:02:10 UTC
[pre-commit.ci] pre-commit autoupdate (#624)
Tip revision: 04daf02
RELEASING.md
# Release Checklist

- [ ] Get `main` to the appropriate code release state.
      [GitHub Actions](https://github.com/ultrajson/ultrajson/actions) should be running
      cleanly for all merges to `main`.
      [![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
      [source and wheels](https://github.com/ultrajson/ultrajson/actions?query=workflow%3ADeploy)
      to
      [PyPI](https://pypi.org/project/ujson/#history)

- [ ] Check installation:

```bash
pip3 uninstall -y ujson && pip3 install -U ujson
python3 -c "import ujson; print(ujson.__version__)"
```
back to top