File: RELEASING.md

package info (click to toggle)
ujson 5.11.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,148 kB
  • sloc: ansic: 2,789; python: 1,510; cpp: 50; makefile: 43; sh: 12
file content (24 lines) | stat: -rw-r--r-- 885 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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__)"
```