diff options
| -rw-r--r-- | CHANGES.md | 6 | ||||
| -rw-r--r-- | docs/tests.documentation.rst | 4 | ||||
| -rw-r--r-- | src/decorator.py | 2 |
3 files changed, 7 insertions, 5 deletions
@@ -1,10 +1,12 @@ HISTORY -------- -## 4.4.0 (2018-08-04) +## 4.3.1 (2018-08-04) Added a section "For the impatient" to the README, addressing an issue -raised by Amir Malekpour. Added support for Python 3.7. +raised by Amir Malekpour. Added support for Python 3.7. Now +the path to the decorator module appears in the tracebacks, as suggested +by an user at EuroPython 2018. ## 4.3.0 (2018-04-15) diff --git a/docs/tests.documentation.rst b/docs/tests.documentation.rst index a2f847e..e17ae9f 100644 --- a/docs/tests.documentation.rst +++ b/docs/tests.documentation.rst @@ -3,9 +3,9 @@ The ``decorator`` module :Author: Michele Simionato :E-mail: michele.simionato@gmail.com -:Version: 4.4.0 (2018-08-04) +:Version: 4.3.1 (2018-08-04) :Supports: Python 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7 -:Download page: http://pypi.python.org/pypi/decorator/4.4.0 +:Download page: http://pypi.python.org/pypi/decorator/4.3.1 :Installation: ``pip install decorator`` :License: BSD license diff --git a/src/decorator.py b/src/decorator.py index 8aa8537..fd0e9ef 100644 --- a/src/decorator.py +++ b/src/decorator.py @@ -40,7 +40,7 @@ import operator import itertools import collections -__version__ = '4.4.0' +__version__ = '4.3.1' if sys.version >= '3': from inspect import getfullargspec |
