Skip to content

Commit 1be4c4c

Browse files
committed
0.3.1
1 parent c23dc88 commit 1be4c4c

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
0.3.1
2+
=====
3+
- Source code is extracted from __wrapped__ if it exists, and then
4+
falls back to inspect.getsourcelines. This reverses the behavior
5+
implemented in #6.
6+
- Fix Python 2.6 compatibility by requiring Markdown < 2.5 (#19).
7+
Markdown 2.5 dropped support for Python 2.6.
8+
- Get rid of tabs that sneaked in from #17.
9+
- Fix pep8 violations.
10+
111
0.3.0
212
=====
313
- Major HTML face lift. Kudos to @knadh!

pdoc/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def __init__(self):
191191
from mako.lookup import TemplateLookup
192192
from mako.exceptions import TopLevelLookupException
193193

194-
__version__ = '0.3.0'
194+
__version__ = '0.3.1'
195195
"""
196196
The current version of pdoc. This value is read from `setup.py`.
197197
"""

0 commit comments

Comments
 (0)