Skip to content

Commit

Permalink
Bumped release to 4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
micheles committed Aug 4, 2018
1 parent 47cc7f3 commit 18e0912
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions docs/tests.documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ The ``decorator`` module

:Author: Michele Simionato
:E-mail: [email protected]
: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

Expand Down
2 changes: 1 addition & 1 deletion src/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import itertools
import collections

__version__ = '4.4.0'
__version__ = '4.3.1'

if sys.version >= '3':
from inspect import getfullargspec
Expand Down

0 comments on commit 18e0912

Please sign in to comment.