- fix non-local rever_kwargs - change structure from multiple to files to one __init__ file - update README.rst with installation instructions
0.3.1
-------------------------
- found bug when calling the same decorated function multiple times. In certain cases the 'times' keyword argument decreased to 0 triggering a ReachedMaxRetries exception despite the function only being called once
0.3.0
-------------------------
- wanted to modify behaviour to exponential backoff as default rather than fixed intervals between retrys - to replicate functionality of previous versions include a kwarg backoff=False in your decorator
0.2.1
------------------------
- realized that any function wanting to return any value would return None, so fixed that :)
0.2.0
-------------------------
- specify a function to call prior to retrying - realized that the retry count was off by 1, now it should be correct