summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2016-02-08 11:17:58 +0100
committerMichele Simionato <michele.simionato@gmail.com>2016-02-08 11:17:58 +0100
commit854fc35ec9e81b2425249af809b1e286011ad72b (patch)
tree26051ac50d955ff6ce11741245c38bcabcb5bac7
parent913b8bdffaefb97b6e658aae525c2fac53395247 (diff)
downloadpython-decorator-git-4.0.9.tar.gz
Bumped release number to 4.0.94.0.9
-rw-r--r--CHANGES.md4
-rw-r--r--docs/README.rst2
-rw-r--r--documentation.pdf6
-rw-r--r--src/decorator.py2
4 files changed, 9 insertions, 5 deletions
diff --git a/CHANGES.md b/CHANGES.md
index eeede56..f21e096 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,10 @@
HISTORY
--------
+## 4.0.9 (2016-02-08)
+
+Same as 4.0.7 and 4.0.8, re-uploaded due to issues on PyPI
+
## 4.0.7 (2016-02-06)
Switched to a new changelog format (the one in http://keepachangelog.com/)
diff --git a/docs/README.rst b/docs/README.rst
index a5f8274..343b5a3 100644
--- a/docs/README.rst
+++ b/docs/README.rst
@@ -52,7 +52,7 @@ There are various versions of the documentation:
- `PDF version`_
.. _HTML version: http://pythonhosted.org/decorator/documentation.html
-.. _PDF version: https://github.com/micheles/decorator/blob/4.0.7/documentation.pdf
+.. _PDF version: https://github.com/micheles/decorator/blob/4.0.9/documentation.pdf
Repository
---------------
diff --git a/documentation.pdf b/documentation.pdf
index 35813d3..49cf57b 100644
--- a/documentation.pdf
+++ b/documentation.pdf
@@ -269,7 +269,7 @@ endobj
<< /Outlines 83 0 R /PageLabels 125 0 R /PageMode /UseNone /Pages 103 0 R /Type /Catalog >>
endobj
82 0 obj
-<< /Author (Michele Simionato) /CreationDate (D:20160206065838-01'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\))
+<< /Author (Michele Simionato) /CreationDate (D:20160208111732-01'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\))
/Title (The decorator module) >>
endobj
83 0 obj
@@ -403,7 +403,7 @@ q
1 0 0 1 91.03937 3 cm
q
0 0 0 rg
-BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (4.0.5 \(2016-02-06\)) Tj T* ET
+BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (4.0.5 \(2016-02-08\)) Tj T* ET
Q
Q
q
@@ -9213,7 +9213,7 @@ xref
trailer
<< /ID
% ReportLab generated PDF document -- digest (http://www.reportlab.com)
- [(rA\341\315P\361\233\015\017\350\301\263K<\3065) (rA\341\315P\361\233\015\017\350\301\263K<\3065)]
+ [(\\\244m\010\202ty\006\304\333\227s\227\034\(\246) (\\\244m\010\202ty\006\304\333\227s\227\034\(\246)]
/Info 82 0 R /Root 81 0 R /Size 147 >>
startxref
322305
diff --git a/src/decorator.py b/src/decorator.py
index 4a02e4e..5a4cff4 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -40,7 +40,7 @@ import operator
import itertools
import collections
-__version__ = '4.0.7'
+__version__ = '4.0.9'
if sys.version >= '3':
from inspect import getfullargspec