Merge branch 'release/0.2.4' into develop

This commit is contained in:
Kenneth Reitz
2011-03-31 05:22:03 -04:00
3 changed files with 12 additions and 4 deletions
+9 -1
View File
@@ -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
* Initial Release
+2 -2
View File
@@ -10,6 +10,6 @@ from core import *
__author__ = 'Kenneth Reitz'
__version__ = '0.2.3'
__build__ = 0x000203
__version__ = '0.2.4'
__build__ = 0x000204
__license__ = 'MIT'
+1 -1
View File
@@ -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',