File: RELEASE

package info (click to toggle)
debspawn 0.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 540 kB
  • sloc: python: 4,204; xml: 864; sh: 69; makefile: 6
file content (36 lines) | stat: -rw-r--r-- 778 bytes parent folder | download
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
Debspawn Release Notes

1. Write NEWS entries for Debspawn in the same format as usual.

git shortlog v0.6.3.. | grep -i -v trivial | grep -v Merge > NEWS.new

--------------------------------------------------------------------------------
Version 0.6.4
~~~~~~~~~~~~~
Released: 2024-xx-xx

Notes:

Features:

Bugfixes:
--------------------------------------------------------------------------------

2. Commit changes in Git:

git commit -a -m "Release version 0.6.4"
git tag -s -f -m "Release 0.6.4" v0.6.4 <gpg password>
git push --tags
git push

3. Upload to PyPI:

python setup.py sdist
twine upload dist/*

4. Do post release version bump in `RELEASE` and `debspawn/__init__.py`

5. Commit trivial changes:

git commit -a -m "trivial: post release version bump"
git push