Skip to content

Commit

Permalink
Prepare 1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Green committed Aug 8, 2016
1 parent 4bbc5ac commit 1324f30
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -49,3 +49,11 @@
## [v1.2.1] - 2016-05-27
### Changed
- Documentation fixes

## [v1.3.0] - 2016-08-08
### Added
- Support runtime configuration with optional callable kwargs
- Add giveup kwarg for exception inspection

### Changed
- Documentation fixes
13 changes: 9 additions & 4 deletions setup.py
Expand Up @@ -22,15 +22,20 @@
'Topic :: Utilities']


def readme():
with open("README.rst", "r") as infile:
return infile.read()


core.setup(name='backoff',
version='1.2.1',
version='1.3.0',
description="Function decoration for backoff and retry",
long_description=readme(),
py_modules=['backoff'],
author="Bob Green",
author_email="bgreen@litl.com",
description="Function decoration for backoff and retry",
keywords = "backoff function decorator",
url="https://github.com/litl/backoff",
download_url="https://github.com/litl/backoff/tarball/v1.2.1",
download_url="https://github.com/litl/backoff/tarball/v1.3.0",
license="MIT",
long_description=backoff.__doc__,
classifiers=classifiers)

0 comments on commit 1324f30

Please sign in to comment.