Skip to content

Commit 1324f30

Browse files
author
Bob Green
committed
Prepare 1.3.0 release
1 parent 4bbc5ac commit 1324f30

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,11 @@
4949
## [v1.2.1] - 2016-05-27
5050
### Changed
5151
- Documentation fixes
52+
53+
## [v1.3.0] - 2016-08-08
54+
### Added
55+
- Support runtime configuration with optional callable kwargs
56+
- Add giveup kwarg for exception inspection
57+
58+
### Changed
59+
- Documentation fixes

setup.py

+9-4
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,20 @@
2222
'Topic :: Utilities']
2323

2424

25+
def readme():
26+
with open("README.rst", "r") as infile:
27+
return infile.read()
28+
29+
2530
core.setup(name='backoff',
26-
version='1.2.1',
31+
version='1.3.0',
32+
description="Function decoration for backoff and retry",
33+
long_description=readme(),
2734
py_modules=['backoff'],
2835
author="Bob Green",
2936
author_email="[email protected]",
30-
description="Function decoration for backoff and retry",
3137
keywords = "backoff function decorator",
3238
url="https://github.com/litl/backoff",
33-
download_url="https://github.com/litl/backoff/tarball/v1.2.1",
39+
download_url="https://github.com/litl/backoff/tarball/v1.3.0",
3440
license="MIT",
35-
long_description=backoff.__doc__,
3641
classifiers=classifiers)

0 commit comments

Comments
 (0)