forked from invl/retry
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathChangeLog
171 lines (137 loc) · 2.81 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
CHANGES
=======
0.9.5
-----
* removed redundant dependencies
0.9.4
-----
* Updated version to 0.9.4 with tag
* Add on\_exception handler called with captured exception. (#1)
* Updates to construct PyPi retry2 wheel package
0.9.3
-----
* Added log\_traceback parameter to retry + improved logging by adding failed function reference
* Trim setup.py
* Move NullHandler to .compat
* Expose retry.retry\_call
* Relative import
* Move tests out of package
* Bump version
* Fix badges
0.9.2
-----
* Update ChangeLog
* Update AUTHORS
* Don't pin pytest
* tox: Add py35
* Bump version
* Updating requirements.txt to allow for any decorators >=3.4.2
0.9.1
-----
* Updates setup.cfg version info
* Updates authors and changelog
* Adds version ranges to requirements, widening compatibility with other packages and their deps
0.9.0
-----
* Fix typo in classifier
* Add AUTHORS and ChangeLog files
* Packaging the application using PBR
* Update documentation
* Add retry\_call function
* Update tox.ini
* Update requirements
* Move the tests to the appropriate package
* Add .gitignore file
0.8.1
-----
* v0.8.1
* Move try/import to compat
0.8.0
-----
* v0.8.0
* dos2unix
* Add argument jitter for retry()
* Add argument max\_delay for retry()
* Refactor retry()
0.7.0
-----
* v0.7.0
* Update README.rst
* retry(): Update docstring
* retry(): Change default tries to -1
* Move decorator() to .compat
* Add test\_tries\_minus1()
* Add test\_tries\_inf()
* Mock time.sleep in test case
* Refactor retry()
0.6.0
-----
* v0.6.0
* Fix inaccurate attempt counter
* logger is now optional
* Extract logging\_logger
* Make decorator module optional
0.5.0
-----
* v0.5.0
* Update README.rst
* Add badges
* Configurable logger
* Update classifiers
* Remove .hgignore and .hgtags
* Faster test
* Support Python 3.4
* Add tox.ini
* Extract retry/api.py
* Require pytest
* Add test\_retry.py
* Added tag 0.4.2 for changeset 315f5f1229f6
0.4.2
-----
* Version 0.4.2
* (untested) python2.6 support
* README.rst: Add installation
* Add classifiers
* Add LICENSE
* Add requirements.txt
* Fix rST h1 h2 for README.rst
* Add url
* Add README.rst
* Ignore \*.egg-info
* Ignore .env
* Ignore .ropeproject
* Ignore .git
* Added tag 0.4.1 for changeset 2765d4be1b4d
0.4.1
-----
* Version 0.4.1
* Add license
* Add long\_description
* Add docstring for retry()
* Added tag 0.4.0 for changeset e053cae4b105
0.4.0
-----
* Version 0.4.0
* Convert to a package
* backoff defaults to 1
* Refactor: tries defaults to inf instead of None
* Added tag 0.3.0 for changeset 60960fe42471
0.3.0
-----
* Version 0.3.0
* delay defaults to 0
* Use logging
* tries can be None, for retry forever
* Add ifmain
* Refactor
* Added tag 0.2.0 for changeset 87b6dd2bc30b
0.2.0
-----
* Fix typo
* Refactor
* Add description
* Use decorator
* Added tag 0.1.0 for changeset bf83184dd128
0.1.0
-----
* init