From: Daniel Roy Greenfeld Date: Wed, 25 Nov 2015 01:48:05 +0000 (-0800) Subject: Prep for 1.3.0 release X-Git-Tag: 1.3.0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=46ebba4b5842ef0cbdd470759c74a66a96f7a71d;p=cached-property.git Prep for 1.3.0 release --- diff --git a/cached_property.py b/cached_property.py index 339a6b7..6a342d5 100644 --- a/cached_property.py +++ b/cached_property.py @@ -2,7 +2,7 @@ __author__ = 'Daniel Greenfeld' __email__ = 'pydanny@gmail.com' -__version__ = '1.2.0' +__version__ = '1.3.0' __license__ = 'BSD' from time import time diff --git a/setup.py b/setup.py index 2a84e80..c86b5c9 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ try: except ImportError: from distutils.core import setup -__version__ = '1.2.0' +__version__ = '1.3.0' readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '')