From 18e0912a155a053b1b57917ff9c5485fa4136cc0 Mon Sep 17 00:00:00 2001 From: Michele Simionato Date: Sat, 4 Aug 2018 07:29:17 +0200 Subject: Bumped release to 4.3.1 --- CHANGES.md | 6 ++++-- docs/tests.documentation.rst | 4 ++-- src/decorator.py | 2 +- 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 -- cgit v1.2.1