-
Notifications
You must be signed in to change notification settings - Fork 82
/
RELEASING.txt
75 lines (46 loc) · 1.63 KB
/
RELEASING.txt
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Releasing Pyramid Debugtoolbar
==============================
Prepare master for a new release
--------------------------------
- Do platform test via tox:
$ tox -r
Make sure statement coverage is at 100% (the test run will fail if not).
- Run tests on Windows if feasible.
- Ensure all features of the release are documented (audit CHANGES.txt or
communicate with contributors).
- Change CHANGES.txt heading to reflect the new version number.
- Change setup.py version to the release version number.
- Make sure PyPI long description renders (requires ``collective.dist``
installed into your Python)::
$ python setup.py check -r
- Create a release tag.
- Make sure your Python has ``setuptools-git``, ``twine``, and ``wheel``
installed and release to PyPI::
$ python setup.py sdist bdist_wheel
$ twine upload dist/pyramid_debugtoolbar-X.X-*
Marketing and communications
----------------------------
- Announce to Twitter.
```
Pyramid Debugtoolbar 4.X released.
Changes
https://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/changes.html
PyPI
https://pypi.org/project/pyramid-debugtoolbar/4.X.X/
Issues
https://github.com/Pylons/pyramid_debugtoolbar/issues
```
- Announce to maillist.
```
Pyramid Debugtoolbar 4.X.X has been released.
Here are the changes:
<<changes>>
Full change history:
https://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/changes.html
You can install it via PyPI:
pip install pyramid_debugtoolbar==4.X.X
Enjoy, and please report any issues you find to the issue tracker at
https://github.com/Pylons/pyramid_debugtoolbar/issues
Thanks!
- Pylons Project core developers
```