File: release.rst

package info (click to toggle)
csvkit 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,664 kB
  • sloc: python: 4,924; perl: 1,000; makefile: 131; sql: 4
file content (38 lines) | stat: -rw-r--r-- 736 bytes parent folder | download | duplicates (2)
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
===============
Release process
===============

#. All tests pass on continuous integration
#. The changelog is up-to-date and dated
#. If new options are added, regenerate the usage information in the documentation with, for example:

   .. code-block:: bash

      stty cols 80
      csvformat -h
      stty sane

#. The version number is correct in:

   -  setup.py
   -  docs/conf.py
   -  csvkit/cli.py

#. Regenerate the man pages:

   .. code-block:: bash

      sphinx-build -b man docs man

#. Check for new authors:

   .. code-block:: bash

      git log --perl-regexp --author='^((?!James McKinney).*)$'

#. Tag the release:

   .. code-block:: bash

      git tag -a x.y.z -m 'x.y.z release.'
      git push --follow-tags