summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2018-08-04 07:29:17 +0200
committerMichele Simionato <michele.simionato@gmail.com>2018-08-04 07:29:17 +0200
commit18e0912a155a053b1b57917ff9c5485fa4136cc0 (patch)
tree345c2ab5dda138067b02d581b27134bc52bf2b53
parent47cc7f35c8592845e69fbf17e7a6faa718bdefe9 (diff)
downloadpython-decorator-git-18e0912a155a053b1b57917ff9c5485fa4136cc0.tar.gz
Bumped release to 4.3.14.3.1
-rw-r--r--CHANGES.md6
-rw-r--r--docs/tests.documentation.rst4
-rw-r--r--src/decorator.py2
3 files changed, 7 insertions, 5 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 5aced40..00db976 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -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