From: Daniel Greenfeld Date: Tue, 28 Apr 2015 16:34:43 +0000 (-0700) Subject: Bump for 1.2.0 X-Git-Tag: 1.2.0^0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=164ba31a8306bb121f4bc76957f948f6db517f38;p=cached-property.git Bump for 1.2.0 --- diff --git a/README.rst b/README.rst index c2d6daa..d9a893b 100644 --- a/README.rst +++ b/README.rst @@ -12,7 +12,7 @@ cached-property :target: https://pypi.python.org/pypi/cached-property -A cached-property for decorating methods in classes. +A decorator for caching properties in classes. Why? ----- diff --git a/cached_property.py b/cached_property.py index 4b77bbf..339a6b7 100644 --- a/cached_property.py +++ b/cached_property.py @@ -2,7 +2,7 @@ __author__ = 'Daniel Greenfeld' __email__ = 'pydanny@gmail.com' -__version__ = '1.0.0' +__version__ = '1.2.0' __license__ = 'BSD' from time import time diff --git a/setup.py b/setup.py index 0de70e8..a3855b6 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ try: except ImportError: from distutils.core import setup -__version__ = '1.0.0' +__version__ = '1.2.0' readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '') @@ -23,7 +23,7 @@ if sys.argv[-1] == 'publish': setup( name='cached-property', version=__version__, - description='A cached-property for decorating methods in classes.', + description='A decorator for caching properties in classes.', long_description=readme + '\n\n' + history, author='Daniel Greenfeld', author_email='pydanny@gmail.com',