Skip to content

Commit

Permalink
Bump for 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Greenfeld committed Apr 28, 2015
1 parent aa67a47 commit 164ba31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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?
-----
Expand Down
2 changes: 1 addition & 1 deletion cached_property.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = 'Daniel Greenfeld'
__email__ = '[email protected]'
__version__ = '1.0.0'
__version__ = '1.2.0'
__license__ = 'BSD'

from time import time
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
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:', '')
Expand All @@ -23,7 +23,7 @@
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='[email protected]',
Expand Down

0 comments on commit 164ba31

Please sign in to comment.