Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit 1377959

Browse files
committed
Merge pull request #101 from Nurdok/realdocs
Automatic links to GitHub issues in docs
2 parents 12b756b + 7ddae98 commit 1377959

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

docs/conf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
'sphinx.ext.autodoc',
3333
'sphinx.ext.coverage',
3434
'sphinx.ext.viewcode',
35+
'sphinxcontrib.issuetracker', # autolinks issue numbers (like #78)
3536
]
3637

3738
# Add any paths that contain templates here, relative to this directory.
@@ -260,3 +261,7 @@
260261

261262
# If true, do not generate a @detailmenu in the "Top" node's menu.
262263
#texinfo_no_detailmenu = False
264+
265+
# sphinxcontrib.issuetracker settings
266+
issuetracker = 'github'
267+
issuetracker_project = 'GreenSteam/pep257'

docs/release_notes.rst

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@ Current Development Version
77

88
New Features
99

10-
* Added check D210: No whitespaces allowed surrounding docstring text (#95)
10+
* Added check D210: No whitespaces allowed surrounding docstring text (#95).
11+
12+
* Added real documentation rendering using Sphinx (#100).
1113

1214
Bug Fixes
1315

14-
* Removed log level configuration from module level (#98)
16+
* Removed log level configuration from module level (#98).
1517

18+
* D205 used to check that there was *a* blank line between the one line summary
19+
and the description. It now checks that there is *exactly* one blank line
20+
between them (#79).
1621

1722
0.4.1 - January 10th, 2015
1823
--------------------------
@@ -35,7 +40,8 @@ New Features
3540

3641
* Added configuration file support (#58, #87).
3742

38-
* Added a `--count` flag that prints the number of violations found (#86, #89).
43+
* Added a ``--count`` flag that prints the number of violations found (#86,
44+
#89).
3945

4046
* Added support for Python 3.4, PyPy and PyPy3 (#81).
4147

@@ -46,7 +52,7 @@ Bug Fixes
4652
* Fixed parsing various colon and parenthesis combinations in definitions
4753
(#82).
4854

49-
* Allow for greater flexibility in parsing __all__ (#67).
55+
* Allow for greater flexibility in parsing ``__all__`` (#67).
5056

5157
* Fixed handling of one-liner definitions (#77).
5258

requirements/docs.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sphinxcontrib-issuetracker

0 commit comments

Comments
 (0)