Various setup and version issues 0.1.1
authorDaniel Greenfeld <pydanny@gmail.com>
Sat, 17 May 2014 23:26:22 +0000 (16:26 -0700)
committerDaniel Greenfeld <pydanny@gmail.com>
Sat, 17 May 2014 23:26:22 +0000 (16:26 -0700)
HISTORY.rst
cached_property.py
setup.py

index c89dd67044251fe87875dfb5287e903ed56952f2..c93f785d157cdb58ab186069679db507e4e6f39d 100644 (file)
@@ -3,6 +3,11 @@
 History
 -------
 
+0.1.1 (2014-05-17)
+++++++++++++++++++
+
+* setup.py fix. Whoops!
+
 0.1.0 (2014-05-17)
 ++++++++++++++++++
 
index 8fc6f4b1ab8b9ffa4f02c146bc08382e6e1d4981..cb06f9384d9cc694cdb9239bfde0c09f1b3854ff 100644 (file)
@@ -2,7 +2,8 @@
 
 __author__ = 'Daniel Greenfeld'
 __email__ = 'pydanny@gmail.com'
-__version__ = '0.1.0'
+__version__ = '0.1.1'
+__license__ = 'BSD'
 
 
 class cached_property(object):
index 0c0b2fd615c4a34100c91b7dc84e8941c99c9d1a..071a3f6621448665162aa0f183dee2dd99610500 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -21,13 +21,13 @@ if sys.argv[-1] == 'publish':
     os.system('python setup.py sdist bdist_wheel upload')
     print("You probably want to also tag the version now:")
     print("  git tag -a %s -m 'version %s'" % (cached_property.__version__,
-        cached_property.version))
+        cached_property.__version__))
     print("  git push --tags")
     sys.exit()
 
 setup(
     name='cached-property',
-    version='0.1.0',
+    version=cached_property.__version__,
     description='A cached-property for decorating methods in classes.',
     long_description=readme + '\n\n' + history,
     author='Daniel Greenfeld',