blob: 1c6932f1377f325ca42c569135ee61a74d9c9dd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Release Checklist
- [ ] Get master to the appropriate code release state.
[Travis CI](https://travis-ci.com/SethMMorton/natsort) must be passing:
[![Build Status](https://travis-ci.com/SethMMorton/natsort.svg?branch=master)](https://travis-ci.com/SethMMorton/natsort)
- [ ] Ensure that the `CHANGELOG.md` includes the changes made since last release.
Please follow the style outlined in https://keepachangelog.com/.
All new entries should be added into the "Unreleased" section.
- [ ] Bump the version number. Specify either "major", "minor", or "patch":
```bash
tox -e bump patch
```
This will take care of updating the `CHANGELOG.md` with the correct
release information.
- [ ] Push the bumped commit:
```bash
git push
```
- [ ] Check that the [Travis CI build](https://travis-ci.com/SethMMorton/natsort) has
deployed correctly to [the test PyPI](https://test.pypi.org/project/natsort/#history).
- [ ] Push the tag:
```bash
git push --tags
```
- [ ] Check that the tagged [Travis CI build](https://travis-ci.com/SethMMorton/natsort) has
deployed correctly to [PyPI](https://pypi.org/project/natsort/#history).
- [ ] Check installation:
```bash
python -m pip uninstall -y natsort && python -m pip install -U natsort
```
|