diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 125ffd4..307c5ba 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog --------- +1.1.0 (2015-02-16) +================== + +- Add an ``--auth-token`` option. + 1.0.0 (2015-02-15) ================== diff --git a/setup.py b/setup.py index 41e6fdc..778a0fb 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,18 @@ from setuptools import setup, find_packages +with open('README.rst') as f: + readme = f.read() + + setup( name="happy", - version="1.0.0", + version="1.1.0", author="Joe Friedl", author_email="joe@joefriedl.net", url="https://github.com/grampajoe/happy", description="Quickly set up and tear down Heroku apps!", + long_description=readme, install_requires=[ 'click', 'requests'