From 5e7dd877174d9733243c43dfd7cb3a75e2d2cbf1 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 16 May 2010 15:20:29 -0400 Subject: [PATCH] PyPi compatilibity --- HISTORY.rst | 4 ++++ MANIFEST | 2 ++ gistapi/gistapi.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 24424be..d819c49 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,10 @@ History ======= +0.1.1 (2010-05-16) +------------------ + +* PyPi Compatibility Changes 0.1.0 (2010-05-16) ------------------ diff --git a/MANIFEST b/MANIFEST index e5743db..543cedc 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,3 +1,5 @@ +HISTORY.rst +README.rst setup.py gistapi/__init__.py gistapi/gistapi.py diff --git a/gistapi/gistapi.py b/gistapi/gistapi.py index 555fb5e..7649690 100644 --- a/gistapi/gistapi.py +++ b/gistapi/gistapi.py @@ -35,7 +35,7 @@ try: import simplejson as json except ImportError: import json __author__ = 'Kenneth Reitz' -__version__ = ('0', '1', '0') +__version__ = ('0', '1', '1') __license__ = 'MIT' diff --git a/setup.py b/setup.py index 86dedd4..6c57b64 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ if sys.argv[-1] == "publish": sys.exit() setup(name='gistapi', - version='0.1.0', + version='0.1.1', description='Python wrapper for Gist API', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), author='Kenneth Reitz',