From a7353a10316f421292eeb1a5f3f7190c168ad197 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 31 Mar 2011 05:21:47 -0400 Subject: [PATCH] v0.2.4 --- HISTORY.rst | 10 +++++++++- gistapi/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 966dacf..6d571ad 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,10 +1,18 @@ History ======= +0.2.4 (2011-03-31) +------------------ +* Bugfixes +* Rely on Requests +* Unittests +* http://ci.kennethreitz.com/job/gistapi-tests/ + 0.2.3 (2011-03-31) ------------------ * Added Gist Comments support + 0.2.2 (2011-01-10) ------------------ * Updated filename handling for special filenames @@ -52,4 +60,4 @@ History 0.1.0 (2010-05-16) ------------------ -* Initial Release \ No newline at end of file +* Initial Release diff --git a/gistapi/__init__.py b/gistapi/__init__.py index b01ebec..9b1202b 100644 --- a/gistapi/__init__.py +++ b/gistapi/__init__.py @@ -10,6 +10,6 @@ from core import * __author__ = 'Kenneth Reitz' -__version__ = '0.2.3' -__build__ = 0x000203 +__version__ = '0.2.4' +__build__ = 0x000204 __license__ = 'MIT' diff --git a/setup.py b/setup.py index 516ed3a..9a8ca8a 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ if sys.version_info[:2] < (2,6): setup( name='gistapi', - version='0.2.3', + version='0.2.4', description='Python wrapper for Gist API', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), author='Kenneth Reitz',