1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-22 16:26:17 +02:00

Add release checklist

This commit is contained in:
Hugo 2020-03-07 17:52:29 +02:00
parent e536669769
commit 9262359cae

24
RELEASING.md Normal file
View File

@ -0,0 +1,24 @@
# Release Checklist
- [ ] Get master to the appropriate code release state.
[GitHub Actions](https://github.com/ultrajson/ultrajson/actions) and
[Travis CI](https://travis-ci.com/ultrajson/ultrajson) should be running
cleanly for all merges to master.
[![GitHub Actions status](https://github.com/ultrajson/ultrajson/workflows/Test/badge.svg)](https://github.com/ultrajson/ultrajson/actions)
[![Build Status](https://travis-ci.org/ultrajson/ultrajson.svg?branch=master)](https://travis-ci.org/ultrajson/ultrajson)
- [ ] 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 build](https://github.com/ultrajson/ultrajson/actions?query=workflow%3ADeploy)
has deployed to [PyPI](https://pypi.org/project/ujson/#history)
- [ ] Check installation:
```bash
pip3 uninstall -y ujson && pip3 install -U ujson
```