1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-30 07:36:10 +02:00
ultrajson/RELEASING.md

27 lines
1.1 KiB
Markdown
Raw 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.
2020-03-07 16:52:29 +01:00
[GitHub Actions](https://github.com/ultrajson/ultrajson/actions) and
[Travis CI](https://travis-ci.com/ultrajson/ultrajson) 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)
2021-09-22 10:56:42 +02:00
[![Build Status](https://app.travis-ci.com/ultrajson/ultrajson.svg?branch=main)](https://app.travis-ci.com/ultrajson/ultrajson)
2020-03-07 16:52:29 +01:00
- [ ] 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
```