diff --git a/HISTORY.rst b/HISTORY.rst index b26bacb..01fdbe6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,17 @@ History ======= +0.2.0 (2010-08-28) +------------------ +* Support for Add, Rename, Modify, and Delete of Files! +* Proper Unicode Support +* Proper DateTime Support +* Improved Caching +* Urllib2 Support +* PEP 008/257 Compliance +* Secret `.pibb` URL Attribute for gists :) +* Misc. Refactors + 0.1.4 (2010-08-18) ------------------ * Python 2.5 fix diff --git a/gistapi/__init__.py b/gistapi/__init__.py index 1717fbc..abadf85 100644 --- a/gistapi/__init__.py +++ b/gistapi/__init__.py @@ -10,6 +10,6 @@ from core import * __author__ = 'Kenneth Reitz' -__version__ = '0.1.4' -__build__ = 0x000104 +__version__ = '0.2.0' +__build__ = 0x000200 __license__ = 'MIT'